Deleting Row Based on Cell Content

madhuchelliah

Board Regular
Joined
Nov 22, 2017
Messages
226
Office Version
  1. 2019
Platform
  1. Windows
Hey Guys, Please check code below. This code will delete entire row if it find the given word. I want to change this code to give more words criteria instead of one word. So that i no need to repeat the code again and again to delete the rows. Thank you.

Code:
Sub DelWords()
Dim SrchRng As Range, Cel As Range
Set SrchRng = Range("A1:A1000")
For Each Cel In SrchRng
    If InStr(1, Cel.Value, "John") > 0 Then
        Cel.EntireRow.Delete
    End If
Next Cel
End Sub
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
you can exand it by the following as many times as you like:

If (InStr(1, Cel.Value, "John") > 0) or (InStr(1, Cel.value, "Harry") > 0) Then
 
Upvote 0
When deleting rows, it's always better to work up, rather than down.
Try this
Code:
Sub DelWords()
   Dim Cnt  As Long
   Dim Wrds As Variant
   Dim wrd As Variant
   
   Wrds = Array("[COLOR=#ff0000]John[/COLOR]", "[COLOR=#ff0000]Jane[/COLOR]", "[COLOR=#ff0000]Fluff[/COLOR]")
   
   For Cnt = 1000 To 1 Step -1
      For Each wrd In Wrds
       If InStr(1, Range("A" & Cnt).Value, wrd, vbTextCompare) > 0 Then
           Rows(Cnt).EntireRow.Delete
       End If
      Next wrd
   Next Cnt
End Sub
Change the values in red to match the words you're looking for. You can add more in the same style
 
Upvote 0
Hey Guys, Please check code below. This code will delete entire row if it find the given word. I want to change this code to give more words criteria instead of one word. So that i no need to repeat the code again and again to delete the rows. Thank you.

Code:
Sub DelWords()
Dim SrchRng As Range, Cel As Range
Set SrchRng = Range("A1:A1000")
For Each Cel In SrchRng
    If InStr(1, Cel.Value, "John") > 0 Then
        Cel.EntireRow.Delete
    End If
Next Cel
End Sub
Your loop will not work correctly if two adjacent cells in the search range both have the search word in them (removing the top cell's row moves the next cell up and the loop will then skip over it when the loop iterates. When you delete, you must iterate from the bottom cell upward to avoid this problem. That means you cannot use the For Each loop as it iterates from the top cell down. Give this a try instead (note that I added how to do multiple names to the code as well)...
Code:
Sub DelWords()
  Dim Rw As Long, SrchRng As Range
  Set SrchRng = Range("A1:A1000")
  For Rw = 1000 To 1 Step -1
    If InStr(1, Cells(Rw, "A").Value, "John") > 0 Or _
       InStr(1, Cells(Rw, "A").Value, "Harry") > 0 Or _
       InStr(1, Cells(Rw, "A").Value, "Mary") Then
      Rows(Rw).Delete
    End If
  Next
End Sub
 
Upvote 0
Glad we could help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,179
Messages
6,129,332
Members
449,502
Latest member
TSH8125

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