Hi, brgr4u,
do you have any formulas that you want to copy? I generally try to put values into the backup sheet as the data may show different results from what they showed on the original sheet.
Sub EF917764_2()
Dim lngLast As Long
Dim lngCounter As Long
Dim wsData As Worksheet
Dim wsCopy As Worksheet
Set wsData = Sheets("Apr Pivot")
Set wsCopy = Sheets("Lookup")
With wsData
lngLast = .Cells(Rows.Count, "E").End(xlUp).Row
End With
For lngCounter = 1 To lngLast
If IsError(wsData.Cells(lngCounter, "E")) Then
With wsCopy
.Cells(Rows.Count, "B").End(xlUp).Offset(1, 0).Resize(1, 4).Value = wsData.Cells(lngCounter, "A").Resize(1, 4).Value
End With
End If
Next lngCounter
Set wsCopy = Nothing
Set wsData = Nothing
End Sub
Ciao,
Holger
Bookmarks