Je voudrais quitter ma for
lorsqu'une condition à l'intérieur est remplie. Comment puis-je quitter ma for
lorsque la condition if
est remplie ? Je pense à une sorte de sortie à la fin de mon if
, 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