So I am getting that little box in my records after an import, and I don't want it to be there.
I would like to update the fields to remove it with nothing.
I planned on using the easy update solution provided by AceMan:
(though not a phone number this time)
Obviously, my one problem is what to look for for this character? So it should be:
PhNum = Replace(PhNum, "____", "")
Thanks. Sena.
I would like to update the fields to remove it with nothing.
I planned on using the easy update solution provided by AceMan:
Code:
Public Function CorrectPhone(ByVal PhNum)
PhNum = Replace(PhNum, "(", "")
PhNum = Replace(PhNum, ")", "")
PhNum = Replace(PhNum, "-", "")
PhNum = Replace(PhNum, " ", "")
CorrectPhone = PhNum
End Function
Obviously, my one problem is what to look for for this character? So it should be:
PhNum = Replace(PhNum, "____", "")
Thanks. Sena.