如何在Google表格中使用筛选器和RegexMatch来匹配数据。

huangapple go评论105阅读模式
英文:

how to use filter and regexmatch to match data in google sheets

问题

我想匹配列A中的数据是否包含列筛选器(B)中的数据,如果是,则会生成类似列C中的值,但是当我尝试时,我卡在了公式中,就像列D中的公式一样。

英文:

如何在Google表格中使用筛选器和RegexMatch来匹配数据。

so I want to match whether the data in column A contains data in column filter (B) then if yes it will produce values ​​like those in column C but when I tried I am stuck with my formula as it is in column D

答案1

得分: 0

=INDEX(IF(LEN(A2:A), IFNA(REGEXEXTRACT(A2:A, TEXTJOIN("|", 1, B2:B))),))

如何在Google表格中使用筛选器和RegexMatch来匹配数据。

英文:

You may try:

=index(if(len(A2:A),ifna(regexextract(A2:A,textjoin("|",1,B2:B))),))

如何在Google表格中使用筛选器和RegexMatch来匹配数据。

huangapple
  • 本文由 发表于 2023年2月27日 17:18:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/75578620.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定