Hi all, I have a huge list of phone numbers, and I want them to be listed as numbers without dashes or parenthises (e.g. 1234567890) so that I can format them all how I want. How can I go about doing this? The code below is all that I could come up with, but I know almost nothing about the Characters property.
Code
Public Sub fff()
For Each character In cell.Characters
If Not IsNumeric(character) Then
character.Delete
End If
Next character
End Sub
Thanks!