Google 工作表搜索多列

Google Sheets Search Multiple Columns

如何获得搜索功能以查看多列?

=(FILTER(P1:Y500,search(F5(T1:T500)+(U1:U500))))

=(FILTER(P1:Y500,search(F5(T1:T500+U1:U500))))

=(FILTER(P1:Y500,search(F5(T1:U,U1:U))))

=(FILTER(P1:Y500,search(F5,T1:U+U1:U)))

这些显然不行,但我想不通。任何帮助将不胜感激。

尝试:

=FILTER(P1:Y500; REGEXMATCH(T1:T500&U1:U500; F5&""))