Hello ExcelNewbie 05,
This macro replaces TI.A and TIA with TI/A excpet for "Sheet1". You may need to change this sheet name in the code to match the sheet you want to skip. Place this code in a Standard VBA module.
Sub ReplaceAll()
Dim Wks As Worksheet
For Each Wks In Worksheets
If Wks.Name <> "Sheet1" Then
Wks.UsedRange.Replace _
What:="TIA", Replacement:="TI/A", _
SearchOrder:=xlByColumns, MatchCase:=True
Wks.UsedRange.Replace _
What:="TI.A", Replacement:="TI/A", _
SearchOrder:=xlByColumns, MatchCase:=True
End If
Next Wks
End Sub
Sincerely,
Leith Ross
Bookmarks