Syntax: @RIGHT(S, N)
S = a string value
N = a numeric value
@RIGHT returns the string composed of the rightmost N characters of S. If N is greater than or equal to the length of S, then the entire string S is returned.
Examples:
F1 = ``workstation''
@RIGHT(F1, 1) = ``n''
@RIGHT(F1, 4) = ``tion''
@RIGHT(F1, 20) = ``workstation''