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 <= 10 ... Wend'와 같은 조건을 사용하고 싶지 않습니다.