Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have SSN information (Nine digits) that I would like to be able to
mask the first 5 digits to Zeros. Simply put, I need this SSN (123456789) to be masked to (000006789). That's all I need, and I apologize for not finding my answer within this group as I'm really pressed for time. Thank You, bd. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello Bd420, A1 = 123456789 A2 = "00000" & RIGHT(A1, 4) Result in A2: 000006789 Sincerely, Leith Ross -- Leith Ross ------------------------------------------------------------------------ Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465 View this thread: http://www.excelforum.com/showthread...hreadid=496852 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assuming 123456789 is in A1, put this in B1
=TEXT(RIGHT(A1,4),"000000000") "bd420" wrote in message oups.com... I have SSN information (Nine digits) that I would like to be able to mask the first 5 digits to Zeros. Simply put, I need this SSN (123456789) to be masked to (000006789). That's all I need, and I apologize for not finding my answer within this group as I'm really pressed for time. Thank You, bd. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Input Mask | Excel Worksheet Functions | |||
input mask in excel | Excel Worksheet Functions | |||
Input Mask | New Users to Excel | |||
Input Mask | Excel Programming | |||
Mask input in input boxes? | Excel Programming |