Hi there!
Will you please try the following code, and tell me why this works:
Dim sngMin As Single
Dim sngMax As Single
Dim sngRes As Single
sngMin = 145
sngMax = 1440
sngRes = sngMin / sngMax (=0,1006944)
But not this:
sngMin = 143
sngMax = 1440
sngRes = sngMin / sngMax (=9,930556E-02)
TIA
Jens
Will you please try the following code, and tell me why this works:
Dim sngMin As Single
Dim sngMax As Single
Dim sngRes As Single
sngMin = 145
sngMax = 1440
sngRes = sngMin / sngMax (=0,1006944)
But not this:
sngMin = 143
sngMax = 1440
sngRes = sngMin / sngMax (=9,930556E-02)
TIA
Jens