gpt4 book ai didi

excel - VBA中如何使用不等于条件与通配符?

转载 作者:行者123 更新时间:2023-12-04 21:09:52 35 4
gpt4 key购买 nike

如果 cells(3,3) 值不是以 7 或 3 开头,那么它会弹出一个带有一些消息的消息框。

我正在尝试使用此代码,但在每种情况下,它都是弹出消息。

ElseIf Cells(3, 3) <> 7 & "*" _
Or Cells(3, 3) <> 3 & "*" Then
MsgBox "Enter only 7 or 3 series OHR ID"

最佳答案

ElseIf Not Left(Cells(3, 3), 1) = "7" _
Or Left(Cells(3, 3), 1) = "3" Then
MsgBox "Enter only 7 or 3 series OHR ID"

关于excel - VBA中如何使用不等于条件与通配符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57006155/

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