Oct 10, 2006 #1 Hueby MIS Joined Oct 20, 2004 Messages 321 Location US Can you use the PICTURE() function, or something else, to only show the last 4 digits of a social security number? Thanks for any help... Picture({Social_Security},"_____9999")
Can you use the PICTURE() function, or something else, to only show the last 4 digits of a social security number? Thanks for any help... Picture({Social_Security},"_____9999")
Oct 10, 2006 #2 Madawc Programmer Joined Sep 5, 2002 Messages 7,628 Location GB Right({Social_Security}, 4) Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 Upvote 0 Downvote
Oct 10, 2006 1 #3 synapsevampire Programmer Joined Mar 23, 2002 Messages 20,180 Location US Just to be safe, you might use: Right(trim({Social_Security}),4) -k Upvote 0 Downvote