How do you extract the fraction out of column A and put the fractiona
in column B...
example
A B
25.375 .375
7.975 .975
7.25 .25
7.25 .25
7.25 .25
8
Dave Peterson - 26 Jul 2006 20:44 GMT
=mod(a1,1)
or
=a1-int(a1)
Do you get what you want with negative numbers?
> How do you extract the fraction out of column A and put the fractional
> in column B...
[quoted text clipped - 15 lines]
> TaGY2K's Profile: http://www.excelforum.com/member.php?action=getinfo&userid=1861
> View this thread: http://www.excelforum.com/showthread.php?threadid=565313

Signature
Dave Peterson
TaGY2K - 26 Jul 2006 20:59 GMT
Ron Rosenfeld - 26 Jul 2006 21:25 GMT
>How do you extract the fraction out of column A and put the fractional
>in column B...
[quoted text clipped - 9 lines]
>7.25 .25
>87
=MOD(A1,1)
or
=A1-INT(A1)
--ron