How to show only the last 4 digits of social security number (ssn) in Excel?
For keeping the social security number privacy, many Excel users tend to show only the last 4 digits of the ssn in Excel. This article will show you methods to hide all numbers of ssn number except the last 4 digits in Excel.
Show only the last 4 digits of ssn with formula
Show only the last 4 digits of ssn with VBA code
Delete all digits of ssn except the last 4 digits with Kutools for Excel
Show only the last 4 digits of ssn with formula
The following formula can help you show only the last 4 digits of ssn in Excel. Please do as follows.
1. Select a blank cell, enter formula =RIGHT(A2,4) into the Formula Bar, and then press the Enter key. See screenshot:
Note: In the formula, A2 is the cell contains the social security number.
2. Keep selecting the first result cell, drag the Fill Handle down to get all results as below screenshot showed.
Easily delete all digits of ssn except the last 4 digits in Excel:
With the Remove by Position utility of Kutools for Excel, you can delete all digits of ssn except the last 4 digits as below screenshot shown.
Download and try it now! (30-day free trail)
Show only the last 4 digits of ssn with VBA code
The following VBA code can help you showing only the last 4 digits automatically when entering the social security number. Please do as follows.
1. In the worksheet you want to only show the last 4 digits of the social security number, right-click the sheet tab and click View Code from the right-clicking menu. See screenshot:
2. In the Microsoft Visual Basic for Applications window, copy below VBA code into the Code window.
VBA code: Show only last 4 digits of the social security number in Excel
Private Sub Worksheet_Change(ByVal Target As Range)
Dim I As Long
Dim xVal As String
On Error Resume Next
If Intersect(Target, Range("A:A")) Is Nothing Then Exit Sub
Application.EnableEvents = False
For I = 1 To Target.Count
If Len(Target(I).Text) >= 4 Then
Target(I).Value = Right(Target(I).Value, 4)
End If
Next
Application.EnableEvents = True
End Sub
Note: In the code, A:A is the column you will enter social security number into. Please change it as you need.
3. Press the Alt + Q keys to exit the Microsoft Visual Basic for Applications window.
From now on, when entering social security number into cells in column A, all digits will be hidden automatically except for the last 4 numbers.
Delete all digits of ssn except the last 4 digits with Kutools for Excel
You can remove all numbers from the social security number except for the last 4 digits with the Remove by Position utility of Kutools for Excel. Please do as follows.
Before applying Kutools for Excel, please download and install it firstly.
1. Select all cells containing social security numbers, then click Kutools > Text > Remove by Position.
2. In the Remove by Position dialog box, select the From left option in the Position section, specify how numbers you will remove from left in the Numbers box (here I enter number 7), and then click the OK button. See screenshot:
Then all numbers are removed from the selected cells except for the last 4 digits.
If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
Best Office Productivity Tools
Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time. Click Here to Get The Feature You Need The Most...
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
