M Mike H Aug 6, 2008 #2 So, 9.99 stays as 9.99 and 10 becomes 19.99. try this =CEILING(A1+0.01,10)-0.01 Mike
G Glenn Aug 6, 2008 #3 EFF said: Need help with formula to round (always round up) pricing to the next $9.99. Click to expand... =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".
EFF said: Need help with formula to round (always round up) pricing to the next $9.99. Click to expand... =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".
S Sandy Mann Aug 6, 2008 #4 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
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
S scottgorilla Joined Jul 30, 2008 Messages 11 Reaction score 0 Aug 6, 2008 #5 Try this =ROUNDUP(price+9.99,2) price= cell that has original price Good Luck scottgorilla