Formula or funtions for phone numbers

tlang

New Member
Joined
Mar 25, 2011
Messages
8
Hello,
I have 3 columns the first one is area code then first 3 numbers of phone number and then last four numbers. What is the formula or function to place all three columns into one column? Thanks for help in this matter.
Tammy
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Assuming you want this in format xxx-xxx-xxxx:
Excel Workbook
ABCD
15127331234512-733-1234
28008774567800-877-4567
Sheet3

Copy D1 down.
 
Upvote 0
Here is an example.
=A1&B1&C1

You can also create () around the area code and include spaces and the dash as follows:
="("&A1&") "&B1&"-"&C1
 
Upvote 0
Hello,
I have 3 columns the first one is area code then first 3 numbers of phone number and then last four numbers. What is the formula or function to place all three columns into one column? Thanks for help in this matter.
Tammy
If you have:

A1 = 123
B1 = 456
C1 = 7890

This formula entered in D1:

=A1&B1&C1

Will return this string: 1234567890

Is that how you want it or do you want it like a "typical" are code + phone number:

(123) 456-7890

If you want the latter then use this formula:

="("&A1&") "&B1&"-"&C1
 
Last edited:
Upvote 0
If you have:

A1 = 123
B1 = 456
C1 = 7890

This formula entered in D1:

=A1&B1&C1

Will return this string: 1234567890

Is that how you want it or do you want it like a "typical" are code + phone number:

(123) 456-7890

If you want the latter then use this formula:

="("&A1&") "&B1&"-"&C1
Another option:

=TEXT(A1&B1&C1,"(000) 000-0000")
 
Upvote 0

Forum statistics

Threads
1,224,527
Messages
6,179,337
Members
452,907
Latest member
Roland Deschain

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