I have a list of names, and I want to find names containing certain letters. But I want it to find the names with the letters in no particular order. My current function is
=FILTER(A1:A50, REGEXMATCH(A1:A50, E20))
With it filtering through the names from A1 to A50, and E20 is where the letters are input. If I put "Z" into the input, it will return with the names "Choronzon, Niyaz, Itzpapalotl, Pazuzu". But if I put "ZN" it will come out with nothing. However, I want it to output "Choronzon, Niyaz". Thanks for the help!
=FILTER(A1:A50, REGEXMATCH(A1:A50, E20))
With it filtering through the names from A1 to A50, and E20 is where the letters are input. If I put "Z" into the input, it will return with the names "Choronzon, Niyaz, Itzpapalotl, Pazuzu". But if I put "ZN" it will come out with nothing. However, I want it to output "Choronzon, Niyaz". Thanks for the help!