Is there a method of exiting/breaking a while in VBS/VBA?
while
Following code won\'t work as intended:
num = 0 while (num < 10) if (s
VBScript's While loops don't support early exit. Use the Do loop for that:
While
Do
num = 0 do while (num < 10) if (status = "Fail") then exit do num = num + 1 loop