Is there a function to round down in Excel?

C

Curious

If I use Round(A1,0), if the value of A1 is 0.6, Round(A1,0) will be
1.

However, I want to round DOWN to 0 for 0.6. In other words, I only
want to keep the integer part of the number. Even if it's 1.9, after
rounding, I want it to be 1 instead of 2.

Any suggestion?
 
L

Luke M

While ROUNDDOWN (and ROUNDUP) do exist, what you're asking for is just the
integer, so you can use
=INT(A1)

If you *really* wanted ROUNDDOWN
=ROUNDDOWN(A1,0)
 
D

David Biddulph

Functions which you may wish to look at in Excel help include:
ROUNDDOWN
INT
TRUNC
FLOOR

The "See Also" entry in Excel help for a given function will often tell you
about similar or related functions.
 
S

Shane Devenshire

Hi,

besides the INT and ROUNDOWN functions you could use:

=TRUNC(A1,0)
=FLOOR(A1,1)
 

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

Top