Only show Last Four numbers of SSN

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form that shows SSN, but I want to limit what the cell shows to just
the last four. Any ideas?
 
Maybe:
=Right([SSN Field Name],4)

Make sure the name of the text box is not the same as a name in your
report's record source.
 
To get the last four digits use the right function
Right(FieldName,4)

he fisrt four digits
Left(fieldName,4)
 
Back
Top