Combiner.CombineTextByPositions
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 merges a list of text into a single text.
Combiner.CombineTextByPositions(positions as list, optional template as nullable text) as function
| Argument | Description |
|---|---|
| positions | The positions to combine at. |
| optional template | The Combiner template. |
- This function behaves similar to CombineTextByRanges, except that the positions are used to determine the locations of the text. As in Splitter.SplitTextByRanges, each position must be non-negative and larger than the previous position. As in SplitTextByPositions, CombineTextByPositions works by delegating to CombineTextByRanges.
Show: