Rounding Up

  • Thread starter Thread starter EFF
  • Start date Start date
EFF said:
Need help with formula to round (always round up) pricing to the next $9.99.


=ROUNDUP(A1+0.01,-1)-0.01

This assumes you want $100.00 to round up to $109.99 and not down to $99.99. If
that's wrong, drop the first "0.01".
 
Try:

=MAX(CEILING(A1,10)-0.01,0)

or:

=IF(OR(A1={0,""}),"",CEILING(A1,10)-0.01)

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings

(e-mail address removed)
Replace @mailinator.com with @tiscali.co.uk
 

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

Back
Top