gpt4 book ai didi

regex - Google 表格查询和 'not in'

转载 作者:行者123 更新时间:2023-12-04 13:15:32 24 4
gpt4 key购买 nike

我正在尝试拼凑一个可以做一些事情的查询。一,我希望它列出列中的所有名称,二,如果列数组中不存在该列,我只希望它列出该列中的名称。

=QUERY(QUERY(Breakdown!$A$2:$B), "select Col1 where Col1 != '' and Col2 = 'Warrior' order by Col1 Asc")

我做到了这一点,它按照我想要的方式显示列中的所有名称,但是当我开始添加“不在”类型参数时,我会以任何方式破坏它。如何检查 ='Raid Comp'!A2:Q10 范围内不存在 Col1 ?

这是电子表格: https://docs.google.com/spreadsheets/d/1X0GiOCAAve1CR4A3JG2Ybf-daMvrrhAsZF5V3XEdn4E/edit?usp=sharing

我想要做的是,一旦在彩色区域内输入名称,如果输入的名称存在于彩色区域下方的列表中,则该名称将从列表中删除。

例子:

enter image description here
enter image description here

最佳答案

在查询中尝试正则表达式:

=QUERY({Breakdown!$A$2:$B}, 
"select Col1
where Col2 = 'Warrior'
and not Col1 matches '"&TEXTJOIN("|", 1, 'Raid Comp'!A2:Q10)&"'
order by Col1 asc")

关于regex - Google 表格查询和 'not in',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60948828/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com