Text.End
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"