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