Sub Initialize
Dim i As Double
Dim x As Double
Dim y As Double
i = 757.15
x = 755.00 + 1.08 + 1.07
y = 755.00 + 1.09 + 1.06
Print "x is equal: " & (i = x) ' returns FALSE
Print "y is equal: " & (i = y) ' returns TRUE
End Sub
Als Programmierer sollte Dir das "Risiko" aber geläufig sein...Von C bzw. C++ kannte ich das "Problem" noch. Das hatte ich schon fast geahnt. Konnte es mir in LS nur nicht so recht erklären.