Hello
Try changing the Macro2 code to:
Dim c As Range
Dim r As Integer
For Each c In Range("SearchCriteria[#Data]")
If c <> "" Then
r = c.Row
End If
Next c
Range("Data").AdvancedFilter Action:=xlFilterCopy, CriteriaRange:=Sheets("Search").Range("A1:D" & r) _
, CopyToRange:=Sheets("Show").Range("A1:G1"), Unique:=False
Sheets("Show").Select
Refer to Macro 2, this code was removed. Without this code, sheets "show" will not deleted the previous record.
Not sure why you would use this as whenever the Advanced filter is run it automatically removes the previous filter results.
DBY
Bookmarks