A colleague and I were trying to figure out a way of doing the equivalent of a \"continue\" statement within a VBScript \"For/Next\" loop.
Everywhere we looked we found
Try use While/Wend and Do While / Loop statements...
i = 1 While i < N + 1 Do While true [Code] If Condition1 Then Exit Do End If [MoreCode] If Condition2 Then Exit Do End If [...] Exit Do Loop Wend