Hello,
I noticed that the counter below only works in some cases. In these cases below, for example, 1.3 works, 1.4 goes wrong...
Ok:
For Var = 0.1 To 1.3 Step 0.1
Range("A1") = Var
Next
Error:
For Var = 0.1 To 1.4 Step 0.1
Range("A1") = Var
Next
Madness! :duh: