Excel 2007 - RoundDown in Calculation?

  • Thread starter Thread starter Charliec
  • Start date Start date
C

Charliec

I have a calculation setup in a column with no decimal points (whole
numbers only). The calculation results in the number being rounded
up. I would like the number to be round down to the whole digit
number (ie if the result is 23.78, I would like it round down to 23).
Below is a example of the current formula:

=SUM((220-F2)*0.9)

What do I have to add to this calculation to get it to round down.

Thanks
Charlie
******************************************************
Charliec
 
Change the formula to:

=ROUNDDOWN(SUM((220-F2)*0.9),0)

and that will round it down to a whole number (i.e. 0 decimal places)

Rhiannon
 
Look at the functions INT, ROUNDDOWN and TRUNC to see which suits your
needs.
Your formula does not need SUM as this will work =(220-F2)*0.9

Tyro
 
Got it, worked like a charm.
Thanks a lot!
Charlie
Change the formula to:

=ROUNDDOWN(SUM((220-F2)*0.9),0)

and that will round it down to a whole number (i.e. 0 decimal places)

Rhiannon
******************************************************
Charliec
 
Back
Top