Oct 10, 2006 #1 Hueby MIS Oct 20, 2004 321 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 Sep 5, 2002 7,628 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 Mar 23, 2002 20,180 US Just to be safe, you might use: Right(trim({Social_Security}),4) -k Upvote 0 Downvote