Je voudrais quitter ma for
boucle lorsqu'une condition à l'intérieur est remplie. Comment sortir de ma for
boucle lorsque la if
condition est remplie? Je pense à une sorte de sortie à la fin de ma if
déclaration, mais je ne sais pas comment cela fonctionnerait.
Dim i As Long
For i = 1 To 50
Range("B" & i).Select
If Range("B" & i).Value = "Artikel" Then
Dim temp As Long
temp = i
End If
Next i
Range("A1:Z" & temp - 1).EntireRow.Delete Shift:=xlToLeft
If [condition] Then Exit For
dans votre boucle