View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.misc
David Biddulph[_2_] David Biddulph[_2_] is offline
external usenet poster
 
Posts: 8,651
Default 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?