I have the following code
For x = LBound(arr) To UBound(arr) sname = arr(x) If instr(sname, \"Configuration item\") Then \'**(here i wa
A lot of years after... I like this one:
For x = LBound(arr) To UBound(arr): Do sname = arr(x) If instr(sname, "Configuration item") Then Exit Do '// other code to copy past and do various stuff Loop While False: Next x