I have a sheet called "Sales"
I want to filter all the columns in row 5 which contains the headings and then filter all the values in the column where heading is "imported Shirts", excluding zeroes and blanks
I have tried to write code to do this but cannot get it to work
Your assistance in this regard is most appreciated
I want to filter all the columns in row 5 which contains the headings and then filter all the values in the column where heading is "imported Shirts", excluding zeroes and blanks
I have tried to write code to do this but cannot get it to work
Code:
Sub Autofilter()
Sheets("Imported Shirts").Select
With Range("A5").Range(Selection, Selection.End(xlToRight)).Select
.Autofilter
.Range("$A$5:$DZ" & LR).Autofilter Field:=106, Criteria1:=Array _
("0.00", "Blanks")
End With
End Sub
Your assistance in this regard is most appreciated