Text.Combine

 

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 text value that is the result of joining all text values with each value separated by a separator.

Text.Combine(text as list,  separator as nullable text) as text  

ArgumentDescription
textThe list of text to combine.
separatorThe separator to use when combining. This will only appear between the specified text values, not at the beginning or the end.
Text.Combine({"a", "b", "c"}, ",") equals "a,b,c"  

Show: