rounding currency amounts

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
 
J

Jeff Jensen

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

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

Lars-Åke Aspelin

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
 
J

Jeff Jensen

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top