Number Formatting

  • Thread starter Thread starter Delaina
  • Start date Start date
D

Delaina

Hello-
I have a report for work that I have to do today and on the spreadsheet
there are phone numbers that were entered on a spreadsheet as
(###)###-#### I need to reformat the numbers w/out the special
characters. I tried custom format and that didn't work. I tried a
formula and that didn't work..so basically I need my phone numbers in
the spread sheet to look like this ##########. Is there a way to do
that?
Thanks,
Delaina
 
If your phone nos is in A1, then enter the following formula in B1:
=SUBSTITUTE(SUBSTITUTE(SUBSTITUTE(A1,"(",""),")",""),"-","")

Mangesh
 
Or another way, also in B1; copied down your range of numbers:

=MID(A1,2,3)&MID(A1,6,3)&RIGHT(A1,4)

Good Luck

Bruce
 
Select your phone numbers, and do 3 Find/Replaces, replacing "(" with
nothing, ")" with nothing, and "-" with nothing.
 

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

Back
Top