Text.End
This topic applies to the Power Query Formula Language which can be used with Power Query and Power BI Desktop to build queries that mashup data. See the list of function categories.
Returns the number of characters from the end of a text value.
Text.End(string as nullable text, numChars as number) as nullable text
| Argument | Description |
|---|---|
| string | The string value to parse. |
| numChars | The number of characters to return. |
Text.End("abcd", 2) equals "cd"
Show: