Description
Extracts the given number of text characters from the right side of the specified string.
Arguments
length is a whole number indicating the number of characters to be extracted from str.
Action
Extracts the given number of text characters from the right side of the specified string.
Typical uses
Use this function to obtain just the right part of a string. For instance, use it to obtain the last four digits of social security numbers stored in a field.
Examples
Right("abcdefg", 3)
Returns "efg".
Right({table.SSNUM}, 4)
Returns the last 4 digits of the social security number as a String.