excel question

  • Thread starter Thread starter yoram
  • Start date Start date
Y

yoram

I need help in how to write a command that will choose
only the #s after the "." for example: I have the #:5.96
and i want excel to write on the next column only the:.96
Thank you
Yoram

hours function needed
5.96 .96*60/100
 
Yoram,

The MOD function is what you need

=MOD(A1,1)
result is 0.96
=MOD(A1,1) * 60 / 100
result is 0.576

Dan E
 
The MOD answer you have will do it, but just to give you a choice:-

=A1-INT(A1) and hence

=(A1-INT(A1))*60/100
 
Back
Top