For common security measures, you might want to display only the last four digits of an identification number, Social Security number, credit card number, or other number, and replace the rest of the digits with asterisks. Whether the digits in your cell are formatted as text, numbers, or the special Social Security number format, you can use the same functions. To display only the last four digits of identification numbers, use the CONCATENATE, RIGHT, and REPT functions.
Example
You might find the example easier to understand if you copy it to a blank worksheet.
How to copy an example
Create a blank workbook or worksheet.
Select the example in the Help topic.
Note
Don't select the row or column headers.
Selecting an example from HelpPress Ctrl+C.
In the worksheet, select cell A1, and press Ctrl+V.
To switch between viewing the results and viewing the formulas that return the results, press Ctrl+` (grave accent), or on the Formulas tab, in the Formula Auditing group, click the Show Formulas button.
| A | B | |
|---|---|---|
| 1 | Type | Data |
| 2 | Social Security Number | 555-55-5555 |
| 3 | Credit Card Number | 5555-5555-5555-5555 |
| 4 | Formula | Description (Result) |
| 5 | =CONCATENATE("***-**-", RIGHT(B2,4)) | Combines the last four digits of the SSN with the "***-**-" text string (***-**-5555) |
| 6 | =CONCATENATE(REPT("****-",3), RIGHT(B3,4)) | Repeats the "****-" text string three times and combines the result with the the last four digits of the credit card number w(****-****-****-5555) |
Note
In the example, hide column B and protect the worksheet so that the original data can't be viewed.