Specific increment sequence in the denomination of .25, .5, .75, whole number

Joined
Sep 5, 2023
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi,

I need a formula to show a value being increased to a certain decimal (.25, .5, .75, 00) everytime the value is between certain ranges. Essentially rounding the value to .25 decimal points whichever one is lower?

I.e. -
9.16 = 9.25
10.74 = 10.75
11.96=12
5.33 = 5.50
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
does this work
=MROUND(A2,0.25)

whichever one is lower?
Not sure i understand exactly - can you give example of Lower?

Oh I see 5.33 is 5.5

Book2
AB
1
29.169.25
310.7410.75
411.9612
55.335.25
Sheet1
Cell Formulas
RangeFormula
B2:B5B2=MROUND(A2,0.25)
 
Upvote 0
You could use the CEILING.MATH function.

Hope that helps,

Doug
 
Upvote 0
does
=ROUNDUP(A2*4,0)/4
work,
otherwise 5.33, becomes 5.25 and you want to round up to 5.5

Book2
ABCDEF
1
29.169.259.259.259.16 = 9.25
310.7410.7510.7510.7510.74 = 10.75
411.9612121211.96=12
55.335.255.55.55.33 = 5.50
Sheet1
Cell Formulas
RangeFormula
B2:B5B2=MROUND(A2,0.25)
C2:C5C2=CEILING.MATH(A2,0.25)
D2:D5D2=ROUNDUP(A2*4,0)/4
 
Upvote 0
etaf's example shows how CEILING.MATH works. It rounds up to the nearest .25...
 
Upvote 0

Forum statistics

Threads
1,215,104
Messages
6,123,113
Members
449,096
Latest member
provoking

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