G Guest Jul 16, 2007 #1 I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed)
I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed)
R ruralguy via AccessMonster.com Jul 16, 2007 #2 Have you tried Right([YourSSNField]),4) ? I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand...
Have you tried Right([YourSSNField]),4) ? I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand...
R ruralguy via AccessMonster.com Jul 16, 2007 #3 Or maybe: "...-..-" & Right([YourSSNField]),4) I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand...
Or maybe: "...-..-" & Right([YourSSNField]),4) I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand...
F fredg Jul 16, 2007 #4 I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand... In an unbound text control on your report: =Right([SSN],4)
I want to print the last four digit of SSS# in the report. How will I do this? (e-mail address removed) Click to expand... In an unbound text control on your report: =Right([SSN],4)