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.
我需要在 vba ms 访问中退出选择案例,但我不知道该怎么做,这是我得到的错误的屏幕截图。
如果这行不通...
Select Case Cat Case 1 If (Condition1 Or Condition2 Or Condition3) Then Exit Select ' <- Compile error End If ' do stuff
...那为什么不直接这样做呢?
Select Case Cat Case 1 If Not (Condition1 Or Condition2 Or Condition3) Then ' do stuff End If