Question by Rachel: Formatting telephone numbers and email addresses in Microsoft Excel version 2003?
I have a list of telephone numbers in Microsoft Excel, some in the (###) ### – #### format and others in the ### – ### – #### format. I need a formula or something that will turn them all into the (###) ### – #### format. Also I have a list of email addresses in the same program, I need a way to have the program recognize the “@” symbol and automatically change it into a link. Any suggestions?

Best answer:

Answer by cozmosis
Phone numbers: if your phone numbers are in column A, put this formula in B1 and copy it in B2 to B?. It will make a duplicate column of your phone numbers all formatted as (???) ??? – ????

=IF(LEFT(A1,1)=”(“,A1,”(“&
LEFT(A1,3)&”) “&MID(A1,7,10))

You could then copy column B and Paste Special – Values over column A to replace all the old values with the new ones.

Emails:
Select all the cells with emails
Select InsertHyperlink
Select Link to: E-mail Address (on the left of the dialog)
If the first cell of your selection is D5 then in the E-Mail Address text input box type in =D5
OK

Add your own answer in the comments!