Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Syntax
Text.End(text as nullable text, count as number) as nullable text
About
Returns a text
value that is the last count
characters of the text
value text
.
Example 1
Get the last 5 characters of the text "Hello, World".
Usage
Text.End("Hello, World", 5)
Output
"World"