I want to be able to combine the results of the following autofilters that work perfectly individually:
ActiveSheet.ListObjects("Trades").Range.AutoFilter Field:=20, Criteria1:="=*-*" & Format(Month(Date), "00")
ActiveSheet.ListObjects("Trades").Range.AutoFilter Field:=14, Criteria1:="="
So I would get records from the current month on the first filter on column 20 PLUS records where column 14 is blank.
ActiveSheet.ListObjects("Trades").Range.AutoFilter Field:=20, Criteria1:="=*-*" & Format(Month(Date), "00")
ActiveSheet.ListObjects("Trades").Range.AutoFilter Field:=14, Criteria1:="="
So I would get records from the current month on the first filter on column 20 PLUS records where column 14 is blank.