VBA Help with replacing multiple values from a string in a range

decadence

Well-known Member
Joined
Oct 9, 2015
Messages
525
Office Version
  1. 365
  2. 2016
  3. 2013
  4. 2010
  5. 2007
Platform
  1. Windows
Hi, Is it possible to find multiple words in a string then replace them with nothing. When I say multiple words I mean like 1000+ because each word I want to remove is varied with a variation which may or may not include all or some of the following characters : "/", "+", "-"," ". Also case sensitive is not an issue and may or may not have a space before or after the word in a string.

Examples:

1- PPM
1000/PPM
+ 25 TO - 80 C Temp
+ 125 TO-55CTEMP
+40 TO -85 C
100 - ppm
0.063 W
0.125W
200 w

From what I have read while trawling the internet for clues on the best way to do this and from what i can tell the best way us to store the values that I want to remove and delete them in one fell swoop. But I don't know how to do this.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
you are on the right lines.

assuming that your original phrases are listed, say in a1:a1000,

have your list of word to replace in (say) z1:znn

then use code to cycle through list a replacing words from list z
 
Upvote 0
Perhaps something the below:-
NB:- Add you characters for deletion in code array "Ray".
Code:
[COLOR="Navy"]Sub[/COLOR] MG07Dec09
[COLOR="Navy"]Dim[/COLOR] Ray [COLOR="Navy"]As[/COLOR] Variant, n [COLOR="Navy"]As[/COLOR] [COLOR="Navy"]Long[/COLOR]
[COLOR="Navy"]Dim[/COLOR] Rng [COLOR="Navy"]As[/COLOR] Range, Dn [COLOR="Navy"]As[/COLOR] Range
Ray = Array("+", "-", "/")
[COLOR="Navy"]Set[/COLOR] Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
[COLOR="Navy"]For[/COLOR] [COLOR="Navy"]Each[/COLOR] Dn [COLOR="Navy"]In[/COLOR] Rng
    [COLOR="Navy"]For[/COLOR] n = 0 To UBound(Ray)
        Dn.Value = Replace(Replace(Dn.Value, Ray(n), " "), "  ", " ")
    [COLOR="Navy"]Next[/COLOR] n
[COLOR="Navy"]Next[/COLOR] Dn
[COLOR="Navy"]End[/COLOR] [COLOR="Navy"]Sub[/COLOR]
Regards Mick
 
Upvote 0
Hi MickG, This code works a treat, much appreciated, Thank you
 
Upvote 0

Forum statistics

Threads
1,214,990
Messages
6,122,626
Members
449,093
Latest member
catterz66

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