Link to home
Start Free TrialLog in
Avatar of mkramer777
mkramer777Flag for United States of America

asked on

excel - adding x's to social security number

I have an excel sheet that has names and social security numbers.  I need to update all of the ss #'s to show the number like this:   xxx-98-9744.  The first 3 digits need to be x's.  Any ideas on a formula that I could copy to do this?  I'm not very proficient with excel so I will also need  instructions on how to copy this through the column so each number gets changed correctly.
Avatar of Subodh Tiwari (Neeraj)
Subodh Tiwari (Neeraj)
Flag of India image

Can you upload a small sample workbook along with the desired output mocked up manually so that we can visualize your requirement more clearly?
A formula will put the result in a different column, assuming SS# in column B:

="xxx-"&TEXT(B2,"00-000")

Copy down the column as far as required. You can then copy all of the results and do a Paste Values back into column B if you want to overwrite the original.

Thanks
Rob
Avatar of mkramer777

ASKER

Can you show me a screenshot of an excel file that would demonstrate this for me?  Very novice with these things.  Right now I have a column of 50 social security numbers in column B.  Where do I add the formula and how do I copy it to the whole column?
Copy the formula I gave into cell C2,  assuming it is blank. Hover the mouse over the bottom right corner of cell C2 until the cursors turns to a + symbol; double click and the formula will be copied down as required.

Now select cell C2 as normal with the mouse. On the keyboard press the Shift key and the down arrow key until all the cells with the formula are selected. Now press Ctrl + C to copy these cells. Select B2 and right click. There will be an option to paste values, looks like a square with 123 in it; click that and the values will be pasted in column B. The formulas in column C can now be deleted.
I must be doing this all wrong.  I tried to go by the instructions but the screenshot shows what I received.
Screen-Shot-2016-09-20-at-11.05.31-A.png
Can you upload the file so that we can take a look.

From the screen shot, it looks like the value of 502-98-8984 is in cell B1. For my formula I had assumed that row 1 would be headers so suggested you refer to row 2 in the formula for the first value.

Also it looks like you have the value with 9 digits spaced with a couple of dashes, that is not the impression I got from the question.

So, I assume you want the first three characters converted to xxx and the remainder added to the end. Is that correct? Are the dashes as a result of special formatting or actually contained in the cell; I know there is a Built In format for SS#s.

When cell B2 is selected, what is in the formula bar, is it '502-98-8984 or just 502988984?

Thanks
Rob H
It is just one column of social security numbers.  Need the formula to format the first 3 numbers of the ss # into x's so the number will look like this:   xxx-111-1112

Here is a screenshot.  Probably explained it wrong.
Screen-Shot-2016-09-20-at-11.18.17-A.png
ASKER CERTIFIED SOLUTION
Avatar of Rob Henson
Rob Henson
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Your latest screenshot (not useful, files are better) shows the values in column A rather than column B as per first screenshot.

Change reference to B1 in formulas above to A1.
Slight amendment, I had the format of the SS# wrong, I was missing a digit.

If just numbers in the cell use:  
  ="xxx-"&TEXT(MID(B1,4,7),"000-0000")

If already spaced with dashes use:
   ="xxx-"&MID(B1,5,8)
Another way....
As per your screenshot, If your number string is in A1, try this in B1

In B1
=SUBSTITUTE(A1,LEFT(A1,3),"xxx")

Open in new window

Assuming SS# is already formatted with dashes and not  a real number with Custom formatting. Still waiting for an answer on that question.
Got it.  Thanks!
Sorry Rob.  CLicked on the wrong area to contact you.  I need the formual to format the ss # so it displays like this:

xxx-xx-8785
="xxx-xx-"&RIGHT(B1,4)