英文:
how to use filter and regexmatch to match data in google sheets
问题
我想匹配列A中的数据是否包含列筛选器(B)中的数据,如果是,则会生成类似列C中的值,但是当我尝试时,我卡在了公式中,就像列D中的公式一样。
英文:
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))),))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论