Y
yoly1972
I need to format a report to show only the last four digits
of a social security number. The field is "SocialSecurityNumber" and the
format is
xxx-xx-. I run invoice reports at my job and for specific companies i need to
only show last four numbers of ssn. I tried the following code in Private Sub
Detail_Format.
if me.billingid = "10016" then
Me.SocialSecurityNumber = "xxx-xx-" + Right(Me.SocialSecurityNumber, 4)
end if
It gives me an error . I'm new to VB Access. Any help would be nice. thanks.
of a social security number. The field is "SocialSecurityNumber" and the
format is
xxx-xx-. I run invoice reports at my job and for specific companies i need to
only show last four numbers of ssn. I tried the following code in Private Sub
Detail_Format.
if me.billingid = "10016" then
Me.SocialSecurityNumber = "xxx-xx-" + Right(Me.SocialSecurityNumber, 4)
end if
It gives me an error . I'm new to VB Access. Any help would be nice. thanks.