(string Text)
RIGHT returns the last character in a text string.
Example: RIGHT(abracadabra) is the last letter (a).
Text: Required. The text string containing the characters you want to extract.
(string Text, int num_chars)
RIGHT returns the last character or characters in a text string, based on the number of
characters you specify.
Example: RIGHT(abracadabra, 3) is the last 3 letters (bra).
Text: Required. The text string containing the characters you want to extract.
Example
Return the three rightmost characters in string:
right(&SelltoPostCode,3)
Comments
Please sign in to leave a comment.