VBA: how to delete filtered rows (multiple criteria)

Nelson78

Well-known Member
Joined
Sep 11, 2017
Messages
526
Office Version
  1. 2007
Hello everybody.

I've the following range:

VBA Code:
Dim Rng As Range
    Set Rng = Sheets(1).Range("A1:AM" & lr)

I've to delete all the rows except if, in column F, the cell value is "Milan" or "Berlin" or "London" or "Paris".

How can I figure it out?

Thank's in advance.
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
To delete all the rows in a specific range (e.g., "A1:AM" to "A" & lr) except if the value in column F is "Milan," "Berlin," "London," or "Paris," you can use the following VBA code:

```vba
VBA Code:
Sub KeepSpecificCities()
    Dim ws As Worksheet
    Dim lr As Long
    Dim cell As Range
    Dim citiesToKeep As String


    ' Define the worksheet and last row
    Set ws = ThisWorkbook.Sheets(1) ' Change the sheet index as needed
    lr = ws.Cells(ws.Rows.Count, "A").End(xlUp).Row


    ' Define the cities to keep (add or remove as needed)
    citiesToKeep = "Milan,Berlin,London,Paris"


    ' Loop through the rows in the range
    For Each cell In ws.Range("F2:F" & lr)
        If InStr(1, citiesToKeep, cell.Value, vbTextCompare) = 0 Then
            ' City is not in the list, delete the entire row
            cell.EntireRow.Delete
            lr = lr - 1 ' Update the last row since a row was deleted
        End If
    Next cell
End Sub
```

Make sure to modify the code according to your specific worksheet index and range as needed. This code will delete all rows where the city in column F is not one of the specified cities ("Milan," "Berlin," "London," or "Paris").
 
Upvote 0
How about
VBA Code:
Sub Nelson()
   Dim Ary As Variant, Nary As Variant
   Dim i As Long, c As Long
   Dim Cities As String
   
   Cities = "Milan,Berlin,London,Paris"
   With Sheets(1)
      Ary = .Range("F2:F" & .Range("A" & Rows.Count).End(xlUp)).Value
   End With
   ReDim Nary(1 To UBound(Ary), 1 To 1)
   
   For i = 1 To UBound(Ary)
      If InStr(1, Cities, Ary(i, 1), 1) = 0 Then
         Nary(i, 1) = 1
         c = c + 1
      End If
   Next i
   If c = 0 Then
      MsgBox "Nothing to delete"
      Exit Sub
   End If
   With Sheets(1)
      .Range("AN2").Resize(UBound(Ary)).Value = Nary
      With .Range("A2:AN2")
         .Resize(UBound(Ary)).Sort .Range("AN2"), xlAscending, Header:=xlNo
         .Resize(c).EntireRow.Delete
      End With
   End With
End Sub
This assumes that column AN is empty
 
Upvote 0
How about
VBA Code:
Sub Nelson()
   Dim Ary As Variant, Nary As Variant
   Dim i As Long, c As Long
   Dim Cities As String
  
   Cities = "Milan,Berlin,London,Paris"
   With Sheets(1)
      Ary = .Range("F2:F" & .Range("A" & Rows.Count).End(xlUp)).Value
   End With
   ReDim Nary(1 To UBound(Ary), 1 To 1)
  
   For i = 1 To UBound(Ary)
      If InStr(1, Cities, Ary(i, 1), 1) = 0 Then
         Nary(i, 1) = 1
         c = c + 1
      End If
   Next i
   If c = 0 Then
      MsgBox "Nothing to delete"
      Exit Sub
   End If
   With Sheets(1)
      .Range("AN2").Resize(UBound(Ary)).Value = Nary
      With .Range("A2:AN2")
         .Resize(UBound(Ary)).Sort .Range("AN2"), xlAscending, Header:=xlNo
         .Resize(c).EntireRow.Delete
      End With
   End With
End Sub
This assumes that column AN is empty


Very good, with just a small problem (quickly solved by hand, at the moment):

Sometimes, in the city list, I've "FRANKFURT AM MAIN" and "FRANKFURT".
I've to delete "FRANKFURT", but not "FRANKFURT AM MAIN".
Probably the point is in handling

If InStr(1, Cities, Ary(i, 1), 1) = 0 Then
 
Upvote 0
Ok, how about
VBA Code:
Sub Nelson()
   Dim Ary As Variant, Nary As Variant
   Dim i As Long, c As Long
   Dim Cities As String
   
   Cities = ",Milan,Berlin,London,Paris,"
   With Sheets(1)
      Ary = .Range("F2:F" & .Range("A" & Rows.Count).End(xlUp).Row).Value
   End With
   ReDim Nary(1 To UBound(Ary), 1 To 1)
   
   For i = 1 To UBound(Ary)
      If InStr(1, Cities, "," & Ary(i, 1) & ",", 1) = 0 Then
         Nary(i, 1) = 1
         c = c + 1
      End If
   Next i
   If c = 0 Then
      MsgBox "Nothing to delete"
      Exit Sub
   End If
   With Sheets(1)
      .Range("AN2").Resize(UBound(Ary)).Value = Nary
      With .Range("A2:AN2")
         .Resize(UBound(Ary)).Sort .Range("AN2"), xlAscending, Header:=xlNo
         .Resize(c).EntireRow.Delete
      End With
   End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,159
Messages
6,123,348
Members
449,097
Latest member
thnirmitha

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top