Help rounding to highest 1/2 number

bobletcs123

New Member
Joined
Jan 31, 2019
Messages
27
Office Version
  1. 365
Platform
  1. Windows
Hi All,
Need to be able to round a number >1, to the nearest half, rounding up.
0.87 = 1.
1.17=1.5
1.57=2, etc...
My current formula is just doing it to the nearest half (not necessarily the higher half).
I'm sure theres a ceiling in there somewhere, but not sure.

=IF(A2>1, ROUND(AI2-1)*2, 0)/2, 0))

Thanks in advance!!
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Need to be able to round a number >1, to the nearest half, rounding up.
0.87 = 1. 1.17=2, 1.57=2, etc...
If you are rounding up to the nearest half, why would 1.17 go up to 2 instead of 1.5?
 
Upvote 0
If you truly need to next 0.5, try:
Excel Formula:
=CEILING(AI2,0.5)
 
Upvote 0
Solution

Forum statistics

Threads
1,216,115
Messages
6,128,923
Members
449,478
Latest member
Davenil

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