Tôi đang sử dụng vòng lặp While ... Wend của 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
Tôi không muốn sử dụng điều kiện như `Trong khi đếm <= 10 ... Wend