View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default 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?