This is going to be my last post. I spent few hours on this thread and does not seem the end is in sight.
If you have data in row 4 and nothing below it, the next empty row would be 5, so this line works.
.Offset(, -5).Resize(, 5).Copy Destination:=Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1)
But if this is not the case.
Sub test()
Dim LR As Long, i As Long, NR&
Sheets("Sheet2").UsedRange.Offset(1).ClearContents
NR = 5
With Sheets("Sheet1")
LR = .Range("F" & Rows.Count).End(xlUp).Row
For i = 1 To LR
With .Range("F" & i)
If .Value = "x" Then
.Offset(, -5).Resize(, 5).Copy Sheets("Sheet2").Range("A" & NR)
NR = NR + 1
End If
End With
Next i
End With
MsgBox "You changed ColumnF!"
End Sub
Bookmarks