Your second formula fail, if
A1= 50
A2= 578
=A1+A2/100
Your formula returns 55.78, should be 50.578
Teethless mama formula return 50.578
=A1+A2/(10^LEN(A2))
> =MOD(A1,1)
>
[quoted text clipped - 4 lines]
> > part of it (0.456) to another cell? Conversely, if I have Cell 1 = 50 and
> > Cell 2 = 55, how can I join them in a new cell to make the number 50.55?
JE McGimpsey - 13 Sep 2007 00:30 GMT
Slightly more efficient:
=--(A1&"."&A2)
> Your second formula fail, if
>
[quoted text clipped - 15 lines]
> > > part of it (0.456) to another cell? Conversely, if I have Cell 1 = 50 and
> > > Cell 2 = 55, how can I join them in a new cell to make the number 50.55?
Rick Rothstein (MVP - VB) - 13 Sep 2007 02:12 GMT
> Teethless mama formula return 50.578
> =A1+A2/(10^LEN(A2))
Two parentheses more than needed...
=A1+A2/10^LEN(A2)
Rick