The RIGHT function returns the right-most characters from a text string.
num_chars is the number of characters from the right of the text string. If this is omitted it is assumed to be 1. If it is greater than the number of characters in text then RIGHT will return the whole text string.
For example,
RIGHT("New York", 4) returns "York"
RIGHT("Washington", 20) returns "Washington"
See also: