How do I strip out all non-numeric characters?
I have 10,000 phone numbers, of which people entered in different formats, such as
212.123.1234
212 123 1234
212-123-1234
(212)123-1234
How do I strip out ALL the data/characters that are NOT numbers so the result is
2121231234
I want all my phone numbers to be consistent. I can individually FIND and REPLACE the .()- and spaces with "" nothing but sometimes there remain hidden characters after the 10 numbers. I know this from doing a =LEN(A1) and it reports 11, even though I see only 10 numbers. If I highlight the field and hit delete at the end of the 10 numbers, it deletes SOMETHING which is invisible and takes the length to 10 numbers as it should be.
So, how do I strip out ALL the data/characters that are NOT numbers so the result is only the 10 numbers?
I have 10,000 phone numbers, of which people entered in different formats, such as
212.123.1234
212 123 1234
212-123-1234
(212)123-1234
How do I strip out ALL the data/characters that are NOT numbers so the result is
2121231234
I want all my phone numbers to be consistent. I can individually FIND and REPLACE the .()- and spaces with "" nothing but sometimes there remain hidden characters after the 10 numbers. I know this from doing a =LEN(A1) and it reports 11, even though I see only 10 numbers. If I highlight the field and hit delete at the end of the 10 numbers, it deletes SOMETHING which is invisible and takes the length to 10 numbers as it should be.
So, how do I strip out ALL the data/characters that are NOT numbers so the result is only the 10 numbers?