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.

link|improve this question
1  
Welcome to Stackoverflow, don't forget to read the FAQ. If any of the answer fits your need, please don't forget to accept it by clicking on the tick on the left of the best answer. – JMax Dec 21 '11 at 9:51
2  
Besides, for this kind of question (i.e. Excel formulas and no VBA), you could ask next time on superuser.com – JMax Dec 21 '11 at 9:52
I'm sorry, but I wans't correct in my question: I want 12340.0001 to be modified in 12350. :) – Andrei Andre Dec 21 '11 at 11:23
feedback

3 Answers

You could also use CEILING which rounds up to integer or desired multiple of significance

ie =CEILING(A1,10) rounds up to a multiple of 10

12340.0001 will become 12350

link|improve this answer
feedback

Use ROUND but with num_digits = -1

=ROUND(A1,-1)

Also applies to ROUNDUP and ROUNDDOWN

From Excel help:

  • If num_digits is greater than 0 (zero), then number is rounded to the specified number of decimal places.
  • If num_digits is 0, then number is rounded to the nearest integer.
  • If num_digits is less than 0, then number is rounded to the left of the decimal point.

EDIT: To get the numbers to always round up use =ROUNDUP(A1,-1)

link|improve this answer
nice. I didn't know you could use negative numbers – JMax Dec 21 '11 at 10:34
although the ROUND function that works for the question is ROUNDUP(A1,-1) not ROUND(A1,-1) as above which gives 12340 not 12350. Which to be fair was made clearer by Andrei after Chris posted this answer – brettdj Dec 21 '11 at 13:15
feedback

To round to the nearest ten using the regular rounding rules, divide the number by ten, then round to zero digits, and multiply back by ten: =ROUND(C3/10,0)*10

link|improve this answer
This does not meet I want 12340.0001 to be modified in 12350 – brettdj Dec 21 '11 at 13:20
@brettdj Use ROUNDUP instead of ROUND then. – dasblinkenlight Dec 21 '11 at 13:24
feedback

Your Answer

 
or
required, but never shown

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