I have the following code
For x = LBound(arr) To UBound(arr) sname = arr(x) If instr(sname, \"Configuration item\") Then \'**(here i wa
You can use a GoTo:
GoTo
Do '... do stuff your loop will be doing ' skip to the end of the loop if necessary: If Then GoTo ContinueLoop '... do other stuff if the condition is not met ContinueLoop: Loop