Ich benutze eine While ... Wend-Schleife von 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
Ich möchte keine Bedingung wie `While count <= 10 ... Wend verwenden
excel
vba
while-loop
Priyank Thakkar
quelle
quelle