Using MRound

Rhonda

New Member
Joined
Jul 28, 2005
Messages
36
Need to round all numbers in a column up to the highest 1,000, even if the number would normally be rounded down, i.e. below 500
E.G.
57,900 needs to be rounded to 58,000
57,001 also needs to be rounded to 58,000

As soon as the number goes over the 1,000 I need to round it up to the next thousand.

I tried MROUND as follows
=MROUND(57,900,1000) and it rounded up property to 58,000
=MROUND(57,001,1000) and it rounded to 57,000 - I need it rounded to 58,000
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Good afternoon Rhonda

Try using the CEILING function thus :

=CEILING(57900,1000)
=CEILING(57100,1000)

Both will return 58000.

HTH

DominicB
 
Upvote 0

Forum statistics

Threads
1,215,137
Messages
6,123,252
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top