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.
|
Probably the title is not very suggestive. Let me explain you with an example. I have:
I want those numbers to be roundup to If possible, I would rather use formulas instead of VBA. | |||||||||||
feedback
|
|
You could also use ie =CEILING(A1,10) rounds up to a multiple of 10 12340.0001 will become 12350 | ||||
|
feedback
|
|
Use
Also applies to From Excel help:
EDIT:
To get the numbers to always round up use | |||||
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: | |||||
|
feedback
|