i have phone numbers (000) 000-0000 i need them to be like this 0000000000 i have excel 2007 thank you
Three answers:
Wesley M
2008-03-24 12:01:25 UTC
Supposing your phone numbers are in column A (starting in A1), then in cell B1, type the following exactly:
=mid(A1,2,3) & mid(A1,7,3) & right(A1,4)
Copy/paste this formula as needed in column B and you should be set.
Bad P
2008-03-24 10:23:34 UTC
Format Cells Custom, and just type 0000000000 and click OK
Try What Wesley suggest, and in order to not to have data in two different places, copy the range where the Mid function is and then do a paste special values where the data originally is, then delete the range where the Mid Function is.
anonymous
2008-03-24 10:46:45 UTC
If you're importing text with formatting and you want to remove the formatting, you can use a VERY messy formula, or you can write very simple VBA code to do it.
ⓘ
This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.