vba end for loop
Exit For
excel vba exit for loop
'In VBA how to exit a For Next loop when a condition
'is met: use Exit For.
For i = 1 To 1000
c = c + 1
If c = 750 Then Exit For
Next
'Exit For can also be used inside a For Each loop:
For Each r In [A1:A10]
c = c + c
If r.Value = "Hi" Then Exit For
Next
'-------------------------------------------------------------------
'Note: If multiple For Loops are nested, 'Exit For' transfers
' control to the next higher level of nesting.
'-------------------------------------------------------------------
'VBA also has the Exit Do statement for Do Loops:
Do
c = c + 1
If c = 750 Then Exit Do
Loop While i < 1000
'VBA does NOT have an Exit statement for While Wend loops. While Wend
'loops must run through completion, or be interrupted
'by a GoTo statement:
While i < 1000
c = c + 1
Wend
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us