Gruppe
Allgemein
Problem
Wie kann ich alle Zeilen eines Arbeitsblattes löschen, in denen in den Spalten B, D und J keine Werte stehen?
StandardModule: basMain
Sub ZeilenLoeschen()
Dim iRow As Integer, iRowL As Integer
iRowL = Cells(Rows.Count, 1).End(xlUp).Row
For iRow = iRowL To 1 Step -1
If IsEmpty(Cells(iRow, 2)) And _
IsEmpty(Cells(iRow, 4)) And _
IsEmpty(Cells(iRow, 10)) Then
Rows(iRow).Delete
End If
Next iRow
End Sub