Table of Contents
Overview
This returns a specified number of characters from the right side of a field.
Syntax
RIGHTSTR(FieldName,’N‘)
Element | Description |
---|---|
FieldName | The name of the field from which to extract characters. |
N | The number of characters to extract. |
Example
RIGHTSTR (Manufacturer,5)
Manufacturer |
RIGHTSTR (Manufacturer,5) |
Ford Motor Company | mpany |
RIGHTSTR (Manufacturer,3)
Manufacturer |
RIGHTSTR (Manufacturer,3) |
Ford Motor Company | any |