Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
4  
Looks like a duplicate of this – Gaffi Aug 20 '12 at 19:23
2  
This may be helpful : support.microsoft.com/kb/78113 – Ajit Aug 20 '12 at 19:27
1  

marked as duplicate by JMax, Josh Caswell, Gunther Struyf, Thilo, bažmegakapa Aug 21 '12 at 13:09

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 5 down vote accepted

Floating point representations are only approximations - it is not possible to store arbitrary decimal fractions in binary. Google for "floating point error" for some background and examples, or see wikipedia article on Floating Point

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.