I am trying to filter a column to show all rows that start with the letters A through I. I have looked at the VBA code and I see that for two criteria it shows:
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=6, Criteria1:= _
"=a*", Operator:=xlOr, Criteria2:="=b*"
How would I tell it to only show letters A THROUGH I?
*I would also not like to use Advanced Filter if at all possible.