Mikeyfear, the code below goes in a standard module (Alt+F11, then right click in the window on the left where you see ThisWorkbook then choose Insert, Module) paste the code in its entirity.
Sub Find_n_Replace()
Dim Rng As Range, MyCell As Range
Dim Sht As Worksheet
Set Rng = Sheets("Sheet3").Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
' change sheet name to suit as this is where your list will be
For Each Sht In Sheets
Application.ScreenUpdating = False
Sht.Select
If Sht.Name = "Sheet3" Then GoTo Nxt' change sheet like above
For Each MyCell In Rng
Cells.Replace What:=MyCell.Value, Replacement:=MyCell.Offset(0, 1).Value, LookAt:=xlWhole, _
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
ReplaceFormat:=False
Next MyCell
Nxt:
Next Sht
Application.ScreenUpdating = True
End Sub
My sheet 3 will be the sheet you have list on, the way it works is in column A have the list of words to look for and in column B have the words you want to change them for, so in A1 if you had Spade then in B1 you must have Shovel, when you run the code above it will then change Spade to Shovel, you can of course add a button to your worksheet or toolbar and assign this macro or from the window where you pasted the code click the run button or from excels toolbar choose Tools, Macro, Macro's and then run the one you want, it is in this option window that you can set a keyboard shortcut to run the macro.
Bookmarks