How do I format phone numbers in excel?

G

Guest

I have an excel file with a column for phone numbers. Some are (xxx)
xxx-xxxx and others are xxx-xxx-xxxx. I need to make all the numbers follow
the xxx-xxx-xxxx format but am unable to do so with the format cells. What
do I need to do?
 
D

Dave Peterson

If those () and -'s are really part of the cell (not formatting choices),

Then select the column
and do 3 edit|replaces

edit|replace
what: (
with: (leave blank)
replace all

edit|replace
what: )
with: (leave blank)
replace all

edit|replace
what: -
with: (leave blank)
replace all

Now all your entries should be real numbers and your format|cells|number tab
choices should work ok.
 
G

Guest

If 'phone number in column A, then put this in B and copy down:

=SUBSTITUTE(SUBSTITUTE(A1,"(",""),")","")

HTH
 
K

kfogle

Format Cells > Choose "Custom" Category > In the "Type:" field on the
right type in "000-000-0000"
 
G

Gord Dibben

Edit>Replace

what: (
with: nothing
replace all

Same for )


Gord Dibben MS Excel MVP
 
G

Guest

Thanks, this worked. Now I have a space in the middle of the numbers that I
need to delete (xxx xxxxxxx). How do I do this?
 
D

Dave Peterson

Add one more edit|replace

Edit|Replace
what: (spacebar)
with: (leave blank)
replace all
 
G

Gord Dibben

I'm not sure why OP needs any more than two edit>replaces to get rid of the ()

Some data looks like (xxx)xxx-xxxx

Wants it to look like xxx-xxx-xxxx

Edit>Replace

what: (
with: nothing

Edit>Replace

what: )
with: - My first post was replace with nothing which was incorrect.

returns xxx-xxx-xxxx

I guess I don't understand why the need to trun the phone number into a number
just to turn around and custom format as

xxx-xxx-xxxx


Gord

Add one more edit|replace

Edit|Replace
what: (spacebar)
with: (leave blank)
replace all

Gord Dibben MS Excel MVP
 
D

Dave Peterson

I think that there was an unfortunate line break in the middle of his examples:

I have an excel file with a column for phone numbers. Some are (xxx)
xxx-xxxx and others are xxx-xxx-xxxx.

I think the first example was really:
(xxx) xxx-xxxx
So there would have been an extra space in that string.

And as a personal choice, I'd want all my data the same format--either all text
or all numbers (nicely formatted).

I'd convert any text strings xxx-xxx-xxxx to its number and then use
format|cells to give the whole range a nice consistent look.
 
D

Dave Peterson

And by having the format of the field consistent, I can use =vlookup() and
=match() without having to worry about if the data is text or numeric.
 
G

Gord Dibben

Not seeing the line break, but sure enough could be there.

Now I'm all warm and fuzzy again and can quit stressing myself over sh.. like
this.




I think that there was an unfortunate line break in the middle of his examples:

I have an excel file with a column for phone numbers. Some are (xxx)
xxx-xxxx and others are xxx-xxx-xxxx.

I think the first example was really:
(xxx) xxx-xxxx
So there would have been an extra space in that string.

And as a personal choice, I'd want all my data the same format--either all text
or all numbers (nicely formatted).

I'd convert any text strings xxx-xxx-xxxx to its number and then use
format|cells to give the whole range a nice consistent look.

Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top