Hi,
I have a Do While Loop in which I make certain tests on the data I am processing. Is it possible to tell the loop to skip the current iteration and start processing from the start of the loop for the next iteration. Code as below
Do While objFileTextStream.AtEndOfStream <> True
If Whateva Then
Skip Command Here......
End If
More processing here..ignored if above equates true
Loop
I know I could do ELSE etc but am wanting to avoid creating nested ifs etc
TIA
[sig][/sig]
I have a Do While Loop in which I make certain tests on the data I am processing. Is it possible to tell the loop to skip the current iteration and start processing from the start of the loop for the next iteration. Code as below
Do While objFileTextStream.AtEndOfStream <> True
If Whateva Then
Skip Command Here......
End If
More processing here..ignored if above equates true
Loop
I know I could do ELSE etc but am wanting to avoid creating nested ifs etc
TIA
[sig][/sig]