我有这个公式,它按预期工作,但我想进一步完善数据。
公式:
=QUERY('Users'!A1:Q, "Select A,B,C,F,G,O,Q where Q >= 180 and Q < 44223")
I have try:
=QUERY('Users'!A1:Q, "Select A,B,C,F,G,O,Q where Q >= 180 and Q < 44223 and F not like '*text*'")
但是这会导致错误。理想情况下,我想省略与C和f列中部分文本匹配的任何结果。
编辑:包含指向示例表的链接
理想情况下,我希望查询匹配F列中的所有内容,除了"存档"(但需要通配符)和C列中的所有内容,除了Delta(再次,需要通配符)
try:
=QUERY(Sheet1!A1:Q6,
"select A,B,C,F,G,O,Q
where Q >= 180
and Q < 44223
and not lower(O) matches '.*archived.*'
and not lower(C) matches '.*delta.*'")