RIGHT
Returns the specified number of characters from the end (right side) of a text string and outputs the result as text.
Last updated
Was this helpful?
Returns the specified number of characters from the end (right side) of a text string and outputs the result as text.
The RIGHT function returns the last character or characters in a text string, based on the number of characters you specify. When used with a number, the resultant value is stored as text.
right(text/number, [num_chars])text/number - Required. The text string containing the characters you want to extract.
num_chars - Required. Specifies the number of characters you want RIGHT to extract.
right([Full Name],6)
//When the field Full Name has the value Johny Rivers, this will return Rivers
Last updated
Was this helpful?
Was this helpful?