A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
You can adapt and run the following macro:
Sub RemoveChars()
Dim v
Application.ScreenUpdating = False
' Modify as needed
For Each v In Array("#", "$", "%")
Cells.Replace What:=v, Replacement:="", LookAt:=xlPart
Next v
Application.ScreenUpdating = True
End Sub
Add characters to be removed to the array.
If you store the macro in your Personal Macro Workbook PERSONAL.XLSB, you can run it whenever you need it.
See Excel Personal Macro Workbook | Save & Use Macros in All Workbooks if you need more information.