Convert the phone numbers from the current format "### ### ####" to the full format "1-(###)-###-####"

Jewells0905

New Member
Joined
Mar 10, 2024
Messages
36
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I am trying to convert the phone numbers from the current format "### ### ####" to the full format "1-(###)-###-####" in two steps:

  • In column B, I need to just add parentheses around the area code.
  • In column C, I am finalizing the new phone numbers.
This is being done in google sheets

this is what I have currently came up with, which is clearly not what I'm trying to achieve. Below are the formulas I'm using
B2 - ="("&LEFT(A2,3)
C2- =")"& RIGHT(A2,9)

OriginalStep 1Step 2
439 735 9116(439) 735 9116
414 623 7001
970 449 5701
759 326 4030
 
Last edited by a moderator:

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
In one step... Try:
Excel Formula:
="1-("& LEFT(A1,3) & ")" & "-" & MID(A1,5,3) &"-"& RIGHT(A1,4)
 
Upvote 0
Solution

Forum statistics

Threads
1,215,471
Messages
6,125,000
Members
449,202
Latest member
Pertotal

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top