Hello yogamast12,
Welcome to the Forum!
This macro will leave only the rows in column "A" that have 3 words in them.
Sub RemoveKeywords()
Dim Cell As Range
Dim DelCells As Range
Dim KeyWords As Variant
Dim LastRow As Long
Dim Rng As Range
Dim Wks As Worksheet
Set Wks = ActiveSheet
Set Rng = Wks.Range("A1")
LastRow = Wks.Cells(Rows.Count, Rng.Column).End(xlUp).Row
If LastRow < Rng.Row Then Exit Sub
Set Rng = Rng.Resize(RowSize:=LastRow - Rng.Row + 1)
For Each Cell In Rng
KeyWords = Split(Trim(Cell), " ")
If UBound(KeyWords) <> 2 Then
If DelCells Is Nothing Then Set DelCells = Cell
Set DelCells = Union(DelCells, Cell)
End If
Next Cell
If Not DelCells Is Nothing Then DelCells.Delete
End Sub
Adding the Macro- Copy the macro above pressing the keys CTRL+C
- Open your workbook
- Press the keys ALT+F11 to open the Visual Basic Editor
- Press the keys ALT+I to activate the Insert menu
- Press M to insert a Standard Module
- Paste the code by pressing the keys CTRL+V
- Make any custom changes to the macro if needed at this time.
- Save the Macro by pressing the keys CTRL+S
- Press the keys ALT+Q to exit the Editor, and return to Excel.
To Run the Macro...
To run the macro from Excel, open the workbook, and press ALT+F8 to display the Run Macro Dialog. Double Click the macro's name to Run it.
Bookmarks