RIGHT$ - a string function that returns the rightmost n characters of a string Syntax RIGHT$(stringexpression,n) - stringexpression is a string constant, string variable, or string expression - n, a numeric expression which must have a value between 0 and 32,767, specifies how many right-most characters the function should return. If n is zero, the null string (a zero-length string) is returned. See Also