Roundup to 2 decimal places

hsandeep

Well-known Member
Joined
Dec 6, 2008
Messages
1,215
Office Version
  1. 2010
Platform
  1. Windows
  2. Mobile
I get values in D5:D999 as 145.0056 & so on. In E5:E999 I make it 145.01 since 3rd decimal place is 5 (or >5). Then in F5:F999 I manually punch .24 & in G5:G9999 I ADD 145.01 + .24 to get 145.25.
Objective is: The value should be having 2 decimal places with either .00, .25, .50 or .75.
Ex:
145.00789 145.25
145.20 145.25
145.56 145.75
145.00 145.00
145.304 145.50
145.99 146.00
145.755 146.00
How to accomplish?
Thanks in advance
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
I get values in D5:D999 as 145.0056 & so on. In E5:E999 I make it 145.01 since 3rd decimal place is 5 (or >5). Then in F5:F999 I manually punch .24 & in G5:G9999 I ADD 145.01 + .24 to get 145.25.
Objective is: The value should be having 2 decimal places with either .00, .25, .50 or .75.
Ex:
145.00789 145.25
145.20 145.25
145.56 145.75
145.00 145.00
145.304 145.50
145.99 146.00
145.755 146.00
How to accomplish?
Thanks in advance
Like this...

Book1
AB
2145.0079145.25
3145.20145.25
4145.56145.75
5145.00145.00
6145.304145.50
7145.99146.00
8145.755146.00
Sheet1

This formula entered in B2:

=CEILING(A2,0.25)

Format as Number 2 decimal places.

Copy down as needed.
 
Upvote 0

Forum statistics

Threads
1,216,106
Messages
6,128,863
Members
449,473
Latest member
soumyahalder4

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