RIGHT ER function
The RIGHT
function returns a String value that presents the specified number of characters from the end of the specified string.
Syntax
RIGHT (text, number)
Arguments
text
: String
A String value that represents the original text.
number
: Integer
The number of characters that must be returned from the end of the original text.
Return values
String
The resulting text value.
Example
RIGHT ("Sample", 3)
returns "ple".