Access: Right Function

In Access, the Right function returns the rightmost n characters of a string.

The syntax for the Right function is:

Right( string )

The argument string can be any string expression. However, if string contains Null, Null is returned. The argument length is a Long expression indicating how many characters to return. It must be between 0 and approximately 65,535, inclusive. If length is 0, the return value is a zero-length string. If length is greater than or equal to the number of characters in string, the entire string is returned. To find the number of characters in string, use Len(string).

Example

Right ("WebCheatSheet",11)       returns "CheatSheet" 
Right("Articles", 15)                   returns "articles"

VBA Code

Dim AnyString, MyStr 
AnyString = "Test string"
MyStr = Right(AnyString, 6)

This example uses the Right function to return a specified number of characters from the right side of a string. Now the MyStr variable would contain the value “string

SQL query

You can also use the Right function in a query.

SELECT Right([ItemDesired],3) AS Expr1 
FROM Orders
admin

admin

Leave a Reply

Your email address will not be published.