How to round down

C

comish4lif

=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

Try this:

=ROUNDDOWN(A1,0)
(Rounds towards zero)

14.7>>>14
-1.8>>>-1


Does that help?

Ro
 
Top