Any data fulfilling the 'if' condition, and thus entering this block will be 'next'ed. Nothing will pass the 'next'. But no data not fulfilling the condition will 'see' the code below, which is not what you intend.Perhaps you omitted an 'else' clause after the 'next' statement?
Okay I get it now. That is why next if $Line.contains( blah ) worked. Thank you.