Forum Discussion
cottrera
7 years agoPost Prodigy
Concatenate 3 columns
Hi I wish to use DAX in power bi to concatenate 3 columns. However I would like to place hyphen symbol ( - ) between each concatenated column. Thanks Richard
- Anonymous7 years ago
Hi, Richard. cottrera
The quickest way to do this is using the ampersand & character. Like this,
Column D = [column a] & " - " & [column b] & " - " & [column c]
Anonymous
7 years agoNot applicable
Hi, Richard. cottrera
The quickest way to do this is using the ampersand & character. Like this,
Column D = [column a] & " - " & [column b] & " - " & [column c]
danielescalante
2 years agoNew Member
ésto me funciono realmente, Muchas Gracias