Returns the last (or rightmost) character or characters in a text string.
Syntax
RIGHT(text,num_chars)
Text is the text string containing the characters you want to extract.
Num_chars specifies how many characters you want to extract.
Examples
RIGHT("Sale Price", 5) equals "Price"
RIGHT("Stock Number") equals "r"
RIGHT is similar to LEFT; for more examples, see LEFT.