Delete row if cell in specific column contains a certain word

tipd

New Member
Joined
Apr 17, 2024
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I have a Sub created and need to add into that Sub at the end of it to go search column C for the word Prestige and if column C says Prestige, it will delete that whole row and move the next line up. I need it to search the whole column C which will have more or less rows each time.

When I search for this, I find a lot of Dim starting codes but will those work within a already created Sub?
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
VBA Code:
...

 Application.ScreenUpdating = False
On Error Resume Next
    With Range("C:C")
        .Replace "Prestige", False, xlWhole
        .SpecialCells(xlCellTypeConstants, 4).EntireRow.Delete
    End With
On Error GoTo 0
 Application.ScreenUpdating = True
End Sub
 
Upvote 0
Solution
VBA Code:
...

 Application.ScreenUpdating = False
On Error Resume Next
    With Range("C:C")
        .Replace "Prestige", False, xlWhole
        .SpecialCells(xlCellTypeConstants, 4).EntireRow.Delete
    End With
On Error GoTo 0
 Application.ScreenUpdating = True
End Sub
Thank you so much!
 
Upvote 0

Forum statistics

Threads
1,215,343
Messages
6,124,405
Members
449,157
Latest member
mytux

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