Text.Combine
Concatenates a list of text values into one text value.
Syntax
Text.Combine(
texts as list,
optional separator as text
) as text
Remarks
Returns the result of combining the list of text values, texts, into a single text value. Any null values present in texts are ignored. An optional separator used in the final combined text can be specified.
Examples
Example #1
Combine text values "Seattle" and "WA".
Text.Combine({"Seattle", "WA"})