私は、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」のような条件は使いたくない