rounding currency amounts

  • Thread starter Thread starter sruarg
  • Start date Start date
S

sruarg

i would like to round a currency amount to the next $ 0.05 (five cents)

eg 30.63 to be 30.65 or 40.48 to be 40.50
 
Try using the CEILING Function.
Micky
 
Next five cents:
=ROUNDUP(A1/0.05,0)*0.05

Nearest five cents:
=ROUND(A1/0.05,0)*0.05
 
i would like to round a currency amount to the next $ 0.05 (five cents)

eg 30.63 to be 30.65 or 40.48 to be 40.50

Try this formula:

=MROUND(A1+0.2499, 0.05)

Hope this helps / Lars-Åke
 
I forgot something...

Next five cents:
=ROUNDUP(A1/0.05,0)*0.05
=CEILING(A1,0.05)

Nearest five cents:
=ROUND(A1/0.05,0)*0.05
 
Back
Top