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  

ArgumentDescription
stringThe string value to parse.
numCharsThe number of characters to return.
Text.End("abcd", 2) equals "cd"  

Show: