Great that you solved your problem! You inspired me to turn your code into a general character remove function:
sRemove can hold any length of characters like ("_,@,%")
Public Function MyRemover(sInput As String, sRemove As String) As String
Dim i As Integer, s As String
Dim aVal As...