I have the following code that searches words out of Sheet "names" column A in Sheet "Output" and replaces those words with "names" column B.
I am trying to extend the macro that it does the find and replace in all spreadsheets not just in "Output".
Any help is appreciated
Sub multiFindandReplace()
Dim myList, myRange
Set myList = Sheets("Names").Range("A1:B238")
Set myRange = Sheets("Output").Range("A1:Y99")
For Each cel In myList.Columns(1).Cells
myRange.Replace What:=cel.Value, Replacement:=cel.Offset(0, 1).Value, LookAt:=xlWhole
Next cel
End Sub