Returns a specified number of characters (including spaces) from the end of a text string.
Syntax
RIGHT (“Text”, NumberOfCharacters)
Note: The required separator (comma or semi-colon) automatically corresponds to your computer’s location settings.
Data Types of the Arguments
Text: String
Number of Characters: Integer
Data Type of the Result
String
Example
Return the final nine characters from the (right) end of a text string.
Expression
RIGHT (“The quick brown fox”, 9)
Result
brown fox