Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果活动列中的第一个单元格不是“abc”,我试图退出
If Not Cells(1, ActiveCell.Column).Value = "abc" Then Exit Sub MsgBox ("323")
无论活动列中的第一个单元格是什么 - MsgBox 都不会出现。
怎么样
If Cells(1, ActiveCell.Column).Value <> "abc" Then Exit Sub MsgBox ("323")
在调用 msgbox 之前,您正在退出子程序。调用 msgbox 然后退出 sub。