low = (_Round(low * 100000)) / 100000
BTW this little trick does not work all the time, in fact it fails to return a controlled max number of decimal digits disgustingly often.
BTW this little trick does not work all the time, in fact it fails to return a controlled max number of decimal digits disgustingly often.
Code: (Select All)
Dim low As Double
For low = 0 To .01 Step .00001
low = (_Round(low * 100000)) / 100000
Print low
Next
b = b + ...