Combiner.CombineTextByLengths

 

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.CombineTextByLengths(lengths as list, optional template as nullable text) as function  

ArgumentDescription
lengthsThe lengths to combine on.
optional templateThe Combiner template.
  • Combiner.CombineTextByLengths is similar to CombineTextByRanges, except that the lengths are used to determine the locations of the text.

  • As in Splitter.SplitTextByLengths, each length must be non-negative.

  • As in SplitTextByLengths, CombineTextByLengths works by delegating to CombineTextByRanges.

Show: