I'm trying to extend a loop according to data in a sheet, as follows :
For Loop = 1 to EndOfLoop
If Cells(Loop,1) = 1 Then
SelectString = (Loop+1) & ":" & (Loop+1)
Rows(Selectstring).Insert Shift:xldown
EndOfLoop = EndOfLoop + 1
End If
Next Loop
In the above, if column 1 contains anything but 1 we go to the next loop. If column 1 contains a 1 we insert a blank line and increase the loop variable by 1, to account for the fact that all the original data has been shifted down 1 line from the current point.
The problem is, it doesn't seem to be affecting the loop count (as if the loop lenght is set at the initial execution of the FOR statement and then cannot be altered. If I put
MsgBox(Loop)
MsgBox(EndOfLoop)
at the end of the code, I get Loop = original EndOfLoop and EndOfLoop = (original EndOfLoop+Number Of Blank Lines Inserted).
Is it not possible to dynamically alter a loop terminator variable from within a loop ? Do I have to use do...until ?
Bookmarks