【发布时间】:2012-08-25 09:57:41
【问题描述】:
我正在使用 VBA 的 While...Wend 循环。
Dim count as Integer
While True
count=count+1
If count = 10 Then
''What should be the statement to break the While...Wend loop?
''Break or Exit While not working
EndIf
Wend
我不想使用像`While count
【问题讨论】:
标签: excel vba while-loop