Delete words in a column based off a list in another column

Eric G

New Member
Joined
Dec 21, 2017
Messages
47
How do you delete specific words in one column that's based off a list of words in another column?

For example, let's say in column A I have:

A1: Carrots are orange.
A2: Green peas go great with garlic butter.
A3: Watermelons are red on the inside and green on the outside.

And in column C are the specific words I want to eliminate in column A:

C1: orange
C2: green
C3: red

What's the VBA code to do this?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Try this:
VBA Code:
Sub FindReplaceAll()
'Modified  10/29/2020  9:10:51 AM  EDT
Dim i As Long
Dim lastrow As Long
lastrow = Cells(Rows.Count, "A").End(xlUp).Row
    
    For i = 1 To lastrow
          Cells(i, 1).Replace What:=Cells(i, 3).Value, Replacement:=""
    Next
End Sub
 
Upvote 0
Try this:
VBA Code:
Sub FindReplaceAll()
'Modified  10/29/2020  9:10:51 AM  EDT
Dim i As Long
Dim lastrow As Long
lastrow = Cells(Rows.Count, "A").End(xlUp).Row
   
    For i = 1 To lastrow
          Cells(i, 1).Replace What:=Cells(i, 3).Value, Replacement:=""
    Next
End Sub
Terrific. Works as advertised. Thanks!
 
Upvote 0
Glad I was able to help you.
Come back here to Mr. Excel next time you need additional assistance.
Looks like I spoke too soon. I must apologize as I could have written my question better, but would it be possible to tweak the code just a little bit?

As it stands now, the code will compare the text in A1 with the word in C1 to determine whether to do a find and replace. And then the code works down these two columns for each row. However, while the code does remove the word "green" in A2 it misses the same word in A3 and only removes the word "red."

Is it possible to rewrite the code so it scours all of column A for any of the words listed in column C? And then, of course, deletes those words as it does in your original code.
 
Upvote 0
Could you have a situation where one of the words in col C is contained in a word in col A (ie C4= melons)?
In that scenario should Watermelons become Water?
 
Upvote 0
If partial matches aren't a problem, try
VBA Code:
Sub EricG()
   For Each Cl In Range("C1", Range("C" & Rows.Count).End(xlUp))
      Range("A:A").Replace Cl.Value, "", xlPart, , False, , False, False
   Next Cl
End Sub
 
Upvote 0
Solution
If partial matches aren't a problem, try
VBA Code:
Sub EricG()
   For Each Cl In Range("C1", Range("C" & Rows.Count).End(xlUp))
      Range("A:A").Replace Cl.Value, "", xlPart, , False, , False, False
   Next Cl
End Sub
I think this does the trick. Thanks, Fluff.

And, yes, I do have situations where I'd only want to delete "melons" and the code inadvertently targets "Watermelons." However, I can compensate for this by entering a single space before and after the word melons and adding "MatchCase:=True" to the code for the more obnoxious, hard to get at weeds. Which is what I normally do when I use CTRL-H, just using find and replace one word at a time is quite tedious, hence the desire for some VBA code to save the day.

Again, thanks to the both of you.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,438
Members
449,083
Latest member
Ava19

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