ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Is there a function to round down in Excel? (https://www.excelbanter.com/excel-discussion-misc-queries/236243-there-function-round-down-excel.html)

Curious[_2_]

Is there a function to round down in Excel?
 
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?

T. Valko

Is there a function to round down in Excel?
 
I want to round DOWN to 0

I assume that means there will not be any negative numbers.

Try this:

=INT(A1)

--
Biff
Microsoft Excel MVP


"Curious" wrote in message
...
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?




Mike H

Is there a function to round down in Excel?
 
Hi,

One way

=INT(A1)

Mike

"Curious" wrote:

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?


Luke M

Is there a function to round down in Excel?
 
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)
--
Best Regards,

Luke M
*Remember to click "yes" if this post helped you!*


"Curious" wrote:

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?


David Biddulph[_2_]

Is there a function to round down in Excel?
 
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.
--
David Biddulph

"Curious" wrote in message
...
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?




Shane Devenshire[_2_]

Is there a function to round down in Excel?
 
Hi,

besides the INT and ROUNDOWN functions you could use:

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

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"Curious" wrote:

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?


Curious[_2_]

Is there a function to round down in Excel?
 
Many thanks to all of you! This is helpful.


All times are GMT +1. The time now is 07:07 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com