RIGHT
Returns a certain numbers of characters within a string, counting from the right
Last updated
Was this helpful?
Returns a certain numbers of characters within a string, counting from the right
RIGHT( text, number of characters )
Returns a substring of the given text, counting a given number of characters from the right.
Argument
Description
text
Starting string
number of characters
Number of characters to return
Outputs substring of text
RIGHT( "Missoula", 2)
>> "la"Last updated
Was this helpful?
Was this helpful?