Social Security Numbers

J

jbrick

I need to conceal part of a Social Security Number on reports I am printing,
e.g., 012-34-5678 should look like xxx-xx-5678. I can't figure out how to do
that when the SSN starts with a zero.

Thanks
 
A

Alex Delamain

Not sure if this helps but.......
Assuming the report picks up the social security number from some kin
of table why not use

=+"xxx-xx-"&+right(A1,4)

where A1 contains the social security numbe
 
Top