How to use FILTER function with wildcard?

邮差的信 提交于 2020-07-22 10:58:47

问题


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?

screenshot of what I'm trying to do


回答1:


try:

=FILTER(A:A, SEARCH("*group*", A:A))



来源:https://stackoverflow.com/questions/62973592/how-to-use-filter-function-with-wildcard

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!