Hello all,

I have this line of code:
If WorksheetFunction.Sum(Range("G4:G11")) <> Range("I4").Value Then
which is evaluating to true when I have these numbers:
G4 = 495.00
G5 = 221.18
I4 = 716.18


I ran this code to check that these were indeed equal:
        MsgBox Range("I4").Value
        MsgBox WorksheetFunction.Sum(Range("G4:G11"))
both of these MsgBoxes returned 716.18.

Anyone know why Excel doesn't think these are equal?

Thanks,
Nate