Replacing values with x's and showing last 4 digits.

errollflynn

New Member
Joined
Jan 25, 2021
Messages
24
Office Version
  1. 365
Platform
  1. Windows
Hello,

I am creating a report that has banking information and for obvious reasons, I do not want to show the full account numbers. As account numbers vary in length, I'm trying to figure out a way to display account number 123456789 as xxxxx6789. The challenge is in figuring out a replace or substitute formula that leaves the last four digits of a character string that varies in length untouched.

Thank you.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
For example:

Excel Formula:
=LET(x,RIGHT(A1,4),REPT("x",LEN(SUBSTITUTE(A1,x,"")))&x)
 
Upvote 0
Works perfectly! Thank you!
Are you sure?
Perhaps your account numbers would not allow this, but try that with account number 44444444 or 123451234


In any case, if I understand correctly, simpler would be
Excel Formula:
=REPT("x",LEN(A1)-4)&RIGHT(A1,4)
 
Upvote 0

Forum statistics

Threads
1,214,632
Messages
6,120,649
Members
448,975
Latest member
sweeberry

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top