excel copy and special paste (values) changes the real value

matan2244

New Member
Joined
Oct 5, 2017
Messages
4
i made cell A1 equal 1.123, cell B1 equal 1.22 and cell C1 is a formula: =A1-B1.
it shows the value 0.001.
then i copied cell C1 and made a special paste (values) in D1.
i expected that the value of D1 would be 0.001 just like C1. but it is different. excel made it 0.00099999999999989.
why did it happen? what can i do to fix it?
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
I presume you mean 1.122. You should see that if you do this:

=C1=D1

that they are the same. Its just a floating point arithmetic error.
 
Upvote 0
it is not the same.
if i copy the formula and paste it as values to another file, and then try to compare it to 0.001 i get FALSE.
 
Upvote 0
You said you copied the formula cell and then paste special the value in D1. I said try =C1=D1. They are the same. The formula is producing a floating point error. If you want to solve it wrap your formula with a round function:

=ROUND(A1-B1,3)
 
Upvote 0
then i tried copying it to another file. if you copy it to another file, when you compare a cell with 0.001 to a cell with the pasted cell you get a FALSE.
=ROUND() will not help me because i need a solution to many copy and pasting situations. sometimes the formula's solution is 3 digits, sometimes 10. i need a solution to my problem so i can paste the very same solution of my formula to another file.
 
Upvote 0
The way a computer stores data means there are often these tiny rounding errors. There is no getting around them. You just need to know they potentially exist.
 
Upvote 0

Forum statistics

Threads
1,214,619
Messages
6,120,550
Members
448,970
Latest member
kennimack

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