concat column power bi code example
Example 1: power query concatenate
= [TextColumn] & Date.ToText([DateColumn]) & Number.ToText([NumberColumn])
Example 2: power bi concatenate 3 columns
Joined Column = [column a] & " - " & [column b] & " - " & [column c]
Example 3: power BI append string to calculated measure
Text Concat =
"At " & 'ProductCatalog'[PriceDate] & " the Price was " & 'ProductCatalog'[Price]