RIGHT Function: Difference between revisions
From Planfix
No edit summary |
No edit summary |
||
Line 10: | Line 10: | ||
''Examples:'' | ''Examples:'' | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
RIGHT(A;5) | RIGHT(A;5) | ||
RIGHT({{Task.String field}};4) | RIGHT({{Task.String field}};4) | ||
}</syntaxhighlight> | }</syntaxhighlight> | ||
Revision as of 05:36, 6 December 2019
The RIGHT function returns several of the last symbols of a string, based on the number you set.
Format:
- RIGHT(text;number_of_symbols)
Examples:
RIGHT(A;5)
RIGHT({{Task.String field}};4)
}