Text.ToList

 

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 a list of characters from a text value.

Text.ToList(text as text) as list  

ArgumentDescription
TextThe text to parse through.
Text.ToList("abc") equals {"a","b","c"}  

Show: