Find/Replace VBA Request

kyleno

Board Regular
Joined
Jun 9, 2014
Messages
61
Hi all,

I am looking for some VBA to do a find/replace that can be applied to a defined a range. I would prefer not to have to reference a new worksheet/table if at all possible.

The characters I am looking to find/replace are:
Find What: *
Replace With: %

Find What: ?
Replace With: _

Find What: "
Replace With: '

Find What: &
Replace With: ' || chr(38) || '

P.S.
I originally had the "~" before the "*" and "?" but removed them.

Please and thank you.
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
How about
Code:
Sub Findreplace()

   Dim Ary As Variant
   Dim i As Long
   
   Ary = Array("~*", "%", "~?", "_", Chr(34), "'", "&", "'||" & Chr(38) & "||'")
   For i = LBound(Ary) To UBound(Ary) Step 2
      Range("G:G").Replace Ary(i), Ary(i + 1), xlPart, , False, , False, False
   Next i
End Sub
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,169
Messages
6,123,412
Members
449,098
Latest member
ArturS75

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