A no-brainer I'm sure but could anyone possibly tell me why this for next loop appears to be getting ignored
For TransCounter = (TransCount + 1) To 0
TransArr(Colnum, TransCounter) = TransArr(Colnum, TransCounter - 1)
Debug.Print TransArr(Colnum, TransCounter)
Next TransCounter
Transcount currently equals 1 so there should be two iterations, however when I use step through in debug, the process just jumps through the loop from the For Statement to the next line of code after the Next Statement
Hope you can help.
regards
Phil.
For TransCounter = (TransCount + 1) To 0
TransArr(Colnum, TransCounter) = TransArr(Colnum, TransCounter - 1)
Debug.Print TransArr(Colnum, TransCounter)
Next TransCounter
Transcount currently equals 1 so there should be two iterations, however when I use step through in debug, the process just jumps through the loop from the For Statement to the next line of code after the Next Statement
Hope you can help.
regards
Phil.