I need the loop to continue searching from the first place the "IF" statement is satisfied.
It would be something like this:
Sheets("Testing").Activate
Range("L2").Select
Do
If ActiveCell = "Z" Then
ActiveCell.Offset(0, -8).Select
Selection.Copy
Sheets("TestingPasteSheet").Activate
Range("A300").Select
ActiveCell.End(xlUp).Offset(1, 0).Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End If
ActiveCell.Offset(1, 0).Select
Loop Until IsEmpty(ActiveCell.Offset(0, 2)) = True
Bookmarks