How to blank out some numbers with ####

  • Thread starter Thread starter andysa
  • Start date Start date
A

andysa

Does anybody know how I can blank out the first four numbers in a box
with #### (eg 2323534534 would read ####534534).

Thanks
 
One way to do this
Assuming your number 2323534534 is in A1, enter the following in cell
B1
="####"&RIGHT(A1,6)
This will give B1= ####534534

Hope this helps

Mike
 
Back
Top