问题
I'm trying to use the Google Sheets FILTER function to filter for string that contains the word 'groups'.
The code I'm using is this:
=filter(A2:C2262,B2:B2262="*"&"groups"&"*")
Unfortunately, it doesn't work as the error message I receive is "No matches are found in FILTER evaluation."
I've attached a screenshot to show the table I'm working with.
How do I make this work?

回答1:
try:
=FILTER(A:A, SEARCH("*group*", A:A))
来源:https://stackoverflow.com/questions/62973592/how-to-use-filter-function-with-wildcard