Find and replace in all sheets, and replace in exact format and properties

Maklal

New Member
Joined
Jul 17, 2020
Messages
4
Office Version
  1. 2013
Platform
  1. Windows
Hi, I got this code from another post.
The solution is amazing and really helps me.

I would like to know if there is a way so I can 'Find' and 'Replace the exact value'

The values I'm replacing with are hyperlinks. So I would like to replace the new values with those hyperlinks and keep them working hyperlinks.

So column A, orginal = text
Column B, Replace = hyperink

If possible, thanks in advance.

Find and Replace Multiple values in all worksheets

Sub ReplaceInAllShts()
'Average Joe

Dim Cnt As Long
Dim Replc As Variant
Dim Sht As Long

With Sheets(1)
Replc = .Range("A1", .Range("A" & Rows.Count).End(xlUp))
End With

For Sht = 2 To Worksheets.Count
For Cnt = 1 To UBound(Replc)
Sheets(Sht).UsedRange.Replace what:=Replc(Cnt, 1), Replacement:=Replc(Cnt, 2), _
LookAt:=xlWhole, SearchOrder:=xlByRows, MatchCase:=False, _
SearchFormat:=False, ReplaceFormat:=False
Next Cnt
Next Sht

End Sub
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

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