Possible Duplicate:
Excel: How to roundup a number to the closest ten?

I made this question a few hours ago, but I wasn't very specific:

Excel: How to roundup a number to the closest ten?

Probably the title is not very suggestive. Let me explain you with an example. I have:

12345.6 
2345.1
12345.00000001

I want those numbers to be roundup to 12350. How can I do this? If possible, I would rather use formulas instead of VBA.

This is the original question, but at the same time, I want the same result for: 12340.0001 to be modified in 12350. Somehow I don't know if this is still a round operation. :)

I'm sorry for duplicating the question, but posting a comment at the first question, didn't draw enough attention. :)

link|improve this question
Is it correct that you would you like 12344 rounded down to 12340? – dasblinkenlight Dec 21 '11 at 13:08
See my post in your original question that addresses your question – brettdj Dec 21 '11 at 13:17
feedback

closed as exact duplicate by brettdj, Rowland Shaw, dasblinkenlight, Sebastian Paaske Tørholm, Tim Cooper Dec 22 '11 at 16:19

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

Divide by 10, round with the regular function (Round x,0) and multiply by 10 again...

=(ROUND(E7/10;0)*10)
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.