ROUNDING UP TO NEAREST 9

  • Thread starter Thread starter JUDY
  • Start date Start date
J

JUDY

I would like to multiply a number by 3.5 and then have it rounded up to the
nearest 9. example a product cost 32.45 to get the comparitive price 32.45
times 3.5 =113.58 and then I would like it to round this number to 119.00,
Is ther a formula for that? I have used the =FLOOR(A1*B1,9) BUT IT TAKES ME
TO THE NEXT MULTIPULE OF 9. ANY SUGGESTIONS?
 
Try this:
=CEILING(A1*3.5,10)-1

Does that help?

Regards,

Ron Coderre
Microsoft MVP (Excel)
 
Seeing other responses, I realize I didn't allow for decimals.
So...as others have suggested:
=CEILING(A1*3.5+1,10)-1
 

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