I am looking to filter a column with anything that starts with either m,n,o. Things work fine when I tried to filter with 2 items but does not work for more than 2 items.
Criteria1:="=m*", Operator:=xlOr, Criteria2:="=n*" Works fine to filter anything that starts with m or n
//Criteria1:="=p*", Operator:=xlOr, Criteria2:="=z*", Operator:=xlOr, Criteria2:="=e*" Throws error invalid criteria
Criteria1:=Array("=mab", "=nab", "oab"), Operator:=xlFilterValues Works fine to filter mab,nab,oab.
Criteria1:=Array("=m*", "=n*", "o*"), Operator:=xlFilterValues Works fine to filter literally ``m*,n*,o*` (it is not being considered as regular expression), what i am looking is to filter anything that starts with m or n or o
^[mno]