How do you round down from excel .. ie. 14.56 to 14 14.4 to 14 14.8 to 14
C comish4lif Jul 12, 2005 #5 =rounddown(14.56,0) where the ",0" rounds down to 0 decimal places. You can also wrap this function around another calculation: =rounddown(a1/b1,0)
=rounddown(14.56,0) where the ",0" rounds down to 0 decimal places. You can also wrap this function around another calculation: =rounddown(a1/b1,0)
R Ron Coderre Jul 12, 2005 #6 Try this: =ROUNDDOWN(A1,0) (Rounds towards zero) 14.7>>>14 -1.8>>>-1 Does that help? Ro