Hello All.
I want to delete all rows that contain 8 digits/numerics (i.e.: 45876523) in column "A".
Here is my code with my criteria denoted by the ??? marks.
Thanks in advance.
Mizzness
With Sheets("PV"
.Columns("A:A"
.Rows("3:3000"
.AutoFilter Field:=1, Criteria1:="=*????*"
.EntireRow.Delete Shift:=xlUp
End With
I want to delete all rows that contain 8 digits/numerics (i.e.: 45876523) in column "A".
Here is my code with my criteria denoted by the ??? marks.
Thanks in advance.
Mizzness
With Sheets("PV"
.AutoFilter Field:=1, Criteria1:="=*????*"
.EntireRow.Delete Shift:=xlUp
End With