Estou usando um loop While ... Wend do VBA.
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
Não quero usar uma condição como `While count <= 10 ... Wend
excel
vba
while-loop
Priyank Thakkar
fonte
fonte