SSN formatting

dboatrt

New Member
Joined
May 17, 2009
Messages
10
I am having trouble formatting a column of SSN. I need them to be in the 123-45-6789 format. I have tried special formatting, custom formatting, and neither are working. I am using office 2007 but think the file sent to me is excel 2003 if this makes a difference.

Any help or advice is greatly appreciated.

db
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Worst case scenerio you can use a formula in the column next to SSN

Assuming SSN is in Column A and Row 1 is header

=LEFT(A2,3)&"-"&MID(A2,4,2)&"-"&RIGHT(A2,4)
 
Upvote 0
Why do you need them in this format?

If custom formatting/number formatting doesn't work, its likely these are interpreted by Excel as TEXT values rather than NUMBER values.

This should be the right custom format for text:
???-??-????

And for numbers:
000-00-0000

And (maybe) for either:
000-00-0000;;???-??-????
 
Upvote 0

Forum statistics

Threads
1,214,942
Messages
6,122,366
Members
449,080
Latest member
Armadillos

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