VBA中While为TRUE时,如何跳出循环?
答案:1 悬赏:50 手机版
解决时间 2021-03-24 20:54
- 提问者网友:动次大次蹦擦擦
- 2021-03-24 06:26
VBA中While为TRUE时,如何跳出循环?
最佳答案
- 五星知识达人网友:迷人又混蛋
- 2021-03-24 07:21
使用goto语句,例:如果符合条件跳到标签aaa
while i<100
i=i+1
if i>=20 then goto aaa
wend
aaa: msgbox "i>=20"
while i<100
i=i+1
if i>=20 then goto aaa
wend
aaa: msgbox "i>=20"
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯