Combiner.CombineTextByDelimiter
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 function that combines a list of text into a single text using the specified delimiter.
Combiner.CombineTextByDelimiter(delimiters as text, optional quoteStyle as nullable number) as function
| Argument | Description |
|---|---|
| delimiters | Separates the values. |
| optional quoteStyle | Determines whether there is quoting within the value that should be used to preserve line breaks and for which delimiters are not significant. |
| Setting | Description |
|---|---|
| QuoteStyle.None | The text in the list is concatenated. |
| QuoteStyle.Csv (default) | Values containing quotes, line feeds, or the specified delimiter are escaped to conform to the escaped production of CSV. |
Show: