Hi Friends here is how we can exit the current iteration on a condition and continue with next iteration with a for loop in VB Scripting. Like Continue in VB.
For i=0 to 10
Do
IF i<5 Then
Exit DO
End IF
Statement 1
Statement 2
Statement 3
Statement 4
Exit Do
Loop
Next
for the first 5...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.