A question: do you want the last five Digits from the SSN?
Social Security Numbers are generally written/entered
XXX-XX-XXXX
so using
last_5_SSN: Right(Full_SSN, 5)
against a SSN entered in this fashion will yield
-XXXX
There's not much advantage to returning a Hyphen plus 4 Digits instead of simply 4 Digits.
If you actually want the last 5 Digits, and you're not sure if the users wil enter XXX-XX-XXXX or simply XXXXXXXXX you'd need something like:
Right(Replace(Full_SSN,"-",""),5)
Linq ;0)>