vba to replace old words with new words in a column

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

So I'm stuck with a problem,

I want to replace old words with new words in a column,

Now the problem i have is that If I try replacing "Bill" for example it not only replaces Bill, but also replaces those letters in any other word like "unbilled"

is there a way for me to be able to only replace the word if it is just the word?

so Bill to Sue would be:

so for example cell N10 might say "We told Bill, he should Be Billing Bob, but,Bill,Is Unbillable" to "We told Sue, he should Be Billing Bob, but,Sue,Is Unbillable"

I tried to show what I'm up against, Bill might be surrounded by either a space or a comer on either or both sides.

Currently i was a simple find and replace as below, but any way to do this will be fine

VBA Code:
Range("N4:N1000").Replace What:=Oldvalue3, Replacement:=Newvalue3, LookAt _
        :=xlPart, SearchOrder:=xlByRows, MatchCase:=True, SearchFormat:=False _
        , ReplaceFormat:=False, FormulaVersion:=xlReplaceFormula2

please help if you can

thanks

Tony
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple

Forum statistics

Threads
1,214,649
Messages
6,120,733
Members
448,987
Latest member
marion_davis

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