Macro to delete all rows, except those containing text BRFM

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,570
Office Version
  1. 2021
Platform
  1. Windows
I have code to delete all rows in Col C from row 4 onwards except whre the text contains BRFM for eg BRFM REDIT

I am struggling with this part below



Code:
  If Cells(LR, 3) <> Like  "BRFM*" Then




Code:
 Sub Delete_Unwanted()
Sheets(2).Select
Dim LastRow As Long
 Dim LR As Long

 'fetch the count of rows to act upon

 LastRow = Range("a65593").End(xlUp).Row

 'starting at the bottom of the spreadsheet and work upwards

 For LR = LastRow To 4 Step -1

 'look at the Row# based upon the count and the cell in Column A for that row

 If Cells(LR, 3) <> Like  "BRFM*" Then

 Cells(LR, 3).EntireRow.Delete

 
 End If

 Next LR

 End Sub


It would be appreciated if someone could kindly assist me
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Try
Code:
If Not Cells(LR, 3) Like  "BRFM*" Then
 
Upvote 0
Thanks for the help. Code works perfectly
 
Upvote 0
Glad to help &thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,216,031
Messages
6,128,422
Members
449,450
Latest member
gunars

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