How to round off all the values with 0.000999 into 3 decimal places?

RAIMY HAIDAR

New Member
Joined
Feb 11, 2015
Messages
5
kindly please help,

How to round off all the values in a single column into three decimal places where the last three digit is end up with 0.000999 ( for example : 8.816999, 8.823999) without changing any closest data ?

**as shown in table below

[TABLE="class: grid, width: 150"]
<tbody>[TR]
[TD="align: center"]8.743989[/TD]
[/TR]
[TR]
[TD="align: center"]8.750991[/TD]
[/TR]
[TR]
[TD="align: center"]8.717999[/TD]
[/TR]
[TR]
[TD="align: center"]8.749[/TD]
[/TR]
[TR]
[TD="align: center"]8.75[/TD]
[/TR]
[TR]
[TD="align: center"]8.743999[/TD]
[/TR]
[TR]
[TD="align: center"]8.743958[/TD]
[/TR]
[TR]
[TD="align: center"]8.743979[/TD]
[/TR]
[TR]
[TD="align: center"]8.743999[/TD]
[/TR]
</tbody>[/TABLE]



 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Hey,

Try this adding this into a new column:

=IF((MID(A1,6,3))="999",ROUND(A1,3),A1)

Where your current values are in column A
 
Upvote 0

Forum statistics

Threads
1,223,902
Messages
6,175,278
Members
452,629
Latest member
SahilPolekar

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