I am using a straight forward For Next Loop which operates perfectly when I write
Code:
For n = 1 to numOfDigits
'do something
Next
However when I change this to
Code:
For n = numOfDigits to 1 Step -1
'do the same thing as before
NEXT
(where numOfDigits = 8 at this point in the code)
I am getting an error message saying 'overflow' at the For... line...