Possible Duplicate:
Excel VBA Double Addition Error
I have a very simple VBA macro in Excel that calculates the difference between two numbers. When I try to calculate the difference between 0.7 and 0.65 it returns 4.99999999999999E-02. Why?
Here's my function:
Public Function Diff(x As Double, y As Double) As Double
Diff = x - y
Debug.Print Diff
End Function
Here's what I see in the 'Immediate' window:
4.99999999999999E-02
To replicate this 'bug' you can type "?0.7-0.65" in the Immediate window and see what you get in return.