Cell Contain Certain Text Delete

stevengoh

Active Member
Joined
Nov 5, 2007
Messages
269
My "A" cell text contains "doggy" "doga" etc and i wish i can delete the rows. But the below code can only delete the row with the exact name. Pls help.

Sub Macro1()
LR = Range("A" & Rows.Count).End(xlUp).Row
For i = 1 To LR
If Range("A" & i) = "dog" Then
Range("A" & i).EntireRow.Delete
End If
Next i
End Sub
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
When you delete rows, you must loop from the bottom up. Try:
Code:
Sub Macro1()
    Application.ScreenUpdating = False
    Dim i As Long
    LR = Range("A" & Rows.Count).End(xlUp).Row
    For i = LR To 1 Step -1
        If Range("A" & i) Like "*dog*" Then
           Rows(i).EntireRow.Delete
        End If
    Next i
    Application.ScreenUpdating = True
End Sub
 
Upvote 0
You are very welcome. :) The two "Application.ScreenUpdating" lines don't affect the end result. They serve to prevent screen flickering and speed up the running of the macro. This is important if you have a large data set.
 
Upvote 0
Very helpful. Can check with u again how to key it in formula ?

=if(A1 like "*dog*","true", "false")
 
Last edited:
Upvote 0
Try: =IF(ISNUMBER(SEARCH("dog",A1)),"True","False")
 
Upvote 0
You are very welcome. :)
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,485
Members
448,967
Latest member
visheshkotha

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