M
marston.gould
Is there a way to do the following:
For i = 1 to iEnd
If Array(i) = Value Then
Next i
Else
For j = 1 to jEnd
..
..
..
Next j
End If
Next i
I know I can't have the Next i in there twice.
For i = 1 to iEnd
If Array(i) = Value Then
Next i
Else
For j = 1 to jEnd
..
..
..
Next j
End If
Next i
I know I can't have the Next i in there twice.