round to nearest 50

oldham94l

Board Regular
Joined
Jul 14, 2002
Messages
136
im using ROUND(E7,-2) to round to the nearest hundred, but is there a way to adapt it to round to the nearest 50, or 75 ?
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
you could use
=ROUND(E7/50,0)*50

or the somewhat finicky
=MROUND(E7,50)
which requires the analyst tool pak be installed.
 
Upvote 0
, one more question, if i enter 0 in E7 i need it to be ignored and give a result of 0,

but if someone enters 1 in E7 then it will round it to 50

is this possible?
 
Upvote 0
On 2002-10-15 16:08, oldham94l wrote:
, one more question, if i enter 0 in E7 i need it to be ignored and give a result of 0,

but if someone enters 1 in E7 then it will round it to 50

is this possible?

Have you not tried =CEILING(E7,50)?
 
Upvote 0

Forum statistics

Threads
1,215,743
Messages
6,126,609
Members
449,321
Latest member
syzer

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