I am trying to not include cells which contain certain strings in my For Each Loop. I have the following:
For Each Cel In Rng
If Cel.Offset(, -5).InStr(1, Cel.Value, "Part of" Or "NOT REQUIRED" Or "Need breakdown for") Then GoTo Skip 'the -5 is trying to Offset to the left rather than...