How to round down

  • Thread starter Thread starter TaGY2K
  • Start date Start date
=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)
 
Try this:

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

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


Does that help?

Ro
 
Back
Top