Is there a formula that would format all different types of formatted phone numbers into (000)000-0000?
For example: A file may have the following formats:
1231231234
123-123-1234
123123-1234
123-1231234
Solved! Go to Solution.
Please try:
Regex_Replace([phone number],"\D*?(\d{3})\D*?(\d{3})\D*?(\d{4})",'($1)$2-$3')
cheers,
mark
Thank you.
What if you had some phone numbers that didn't have the area code populated? Maybe to get the end result to be like (000) 123-4567.
Hi,
How do I apply this formula to a column called Telephone_Number.
Please let me know.
Thanks
Lesia
In the Telephone Number I have these formats but additionally I have European Phone numbers.
1231231234
123-123-1234
+44 (0) 1234-4567-568
+39 0883 1978041 |
For the European phone numbers I need it to be +44 (0) 1234-4567-568
Let me know
Regex_Replace([phone number],"\D*?(\d{3})\D*?(\d{3})\D*?(\d{4})",'($1)$2-$3')
How can I use this formula but the date format would be:
(000) 000-0000
Any help is appreciated.
User | Count |
---|---|
106 | |
82 | |
70 | |
54 | |
40 |