Type: Function
Function: RIGHT
Syntax: RIGHT(string, [num_chars=1])
Description: Returns a substring from the end of a specified string.
Sample usage:
RIGHT("abcd")returnsd.RIGHT("abcd", 3)returnsbcd.RIGHT(title, 4)returns the last four characters of the title field.
