How to round down

  • Thread starter Thread starter TaGY2K
  • Start date Start date
T

TaGY2K

How do you round down from excel ..

ie. 14.56 to 14
14.4 to 14
14.8 to 14
 
=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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top