gpt4 book ai didi

Excel VBA @SQL String filter 多个 LIKE 条件

转载 作者:行者123 更新时间:2023-12-04 19:48:11 28 4
gpt4 key购买 nike

此代码按预期工作,但我还需要在主题行中排除 Autoreplies 和一些其他字符串。我需要知道是否可以再添加 2 或 3 个赞。

我尝试了 And 和 Or 条件,但遇到了解析错误。

下面的代码有效。我只需要在无法投递之后添加另一个字符串条件。 “喜欢‘%Automatic reply%’”。

Filter = "@SQL=" & " Not " & _
"urn:schemas:httpmail:subject" & "" & _
" Like '%undeliverable%'"

谢谢。

最佳答案

OR 应该有效,以下示例有 %undeliverable%%Automatic reply%


Filter = "@SQL=" & " Not (urn:schemas:httpmail:subject" & _
" Like '%undeliverable%' Or " & _
"urn:schemas:httpmail:subject" & _
" Like '%Automatic reply%')"

再添加一个过滤器

Filter = "@SQL=" & " Not (urn:schemas:httpmail:subject" & _
" Like '%undeliverable%' Or " & _
"urn:schemas:httpmail:subject" & _
" Like '%Automatic reply%' Or " & _
"urn:schemas:httpmail:subject" & _
" Like '%Bla Bla%')"

关于Excel VBA @SQL String filter 多个 LIKE 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42777395/

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