rounding down to nearest whole 5 or 9

lrussell5

New Member
Joined
Aug 19, 2013
Messages
11
i have some prices that need rounding down to the nearest whole 5 or 9
e.g.
81.75 - 79
126 - 125
33.75 - 29
Any help would be much appreciated!
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Maybe something like this?

=FLOOR(H5,5)-NOT(MOD(FLOOR(H5,5),10))
 
Last edited:
Upvote 0
I also came up with:
=(INT(A1/10)*10)+IF(A1-(INT(A1/10)*10)>=5,5,-1)

Or (the same but with FLOOR):
=FLOOR(A1,10)+IF(A1-FLOOR(A1,10)>=5,5,-1)
 
Upvote 0
Oops, did not work for 129 or 129.5, so two cases:

=(INT(A1/10)*10)+IF(A1-(INT(A1/10)*10)>=9,9,IF(A1-(INT(A1/10)*10)>=5,5,-1))
 
Upvote 0

Forum statistics

Threads
1,215,330
Messages
6,124,308
Members
449,151
Latest member
JOOJ

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