This macro was posted in MrExcel some time ago and I found it on the internet in a search. I tried running it but it doesn't work. Any suggestions please?
Thank you,
Jared Z.
Thank you,
Jared Z.
Code:
Sub Find_and_Replace()
Dim myList, myRange
Set myList = Sheets("Run Macros").Range("F1:G13") 'two column range where find/replace pairs are
Set myRange = Sheets("Run Macros").Range("J2:R11") 'range to be searched
For Each cel In myList.Columns(1).Cells
myRange.Replace what:=cel.Value, replacement:=cel.Offset(0, 1).Value
Next cel
End Sub