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
One option would be to put all the code in the loop inside a Sub and then just return from that Sub when you want to "continue".
Sub
Not perfect, but I think it would be less confusing that the extra loop.