Remove and Replace All Characters in Microsoft Excel using VBA
The following FindandReplace() funciton allows you to replace or remove specific text and characters you want in Microsoft Excel. Just copy...
http://msexcel-tutorials.blogspot.com/2014/08/remove-and-replace-all-characters-in_24.html
The following FindandReplace() funciton allows you to replace or remove specific text and characters you want in Microsoft Excel. Just copy the code below on your VBA code class or module.
Put this in your Sub or Function.
To Replace several text with new text.
To remove several text just leave the second argument blank.
Sub FindandReplace(FindWhat as String, ReplaceWith as String) Cells.Replace What:=FindWhat, Replacement:=ReplaceWith, LookAt:=xlPart, SearchOrder:= _ xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False End Subz
Put this in your Sub or Function.
To Replace several text with new text.
>FindandReplace "OldText", "NewText"
To remove several text just leave the second argument blank.
FindandReplace "OldText", ""