Solved! Go to Solution.
Hi, Richard. @cottrera
The quickest way to do this is using the ampersand & character. Like this,
Column D = [column a] & " - " & [column b] & " - " & [column c]
Hi, Richard. @cottrera
The quickest way to do this is using the ampersand & character. Like this,
Column D = [column a] & " - " & [column b] & " - " & [column c]
The proposed solution worked well in 2019 and for just three columns but in case anyone stumbles across this now, I would like to point out there is a better way that probably wasn't available in 2019
The DAX "COMBINEVALUES" function joins text using a delimiter.
COMBINEVALUES("-",Column1, Column2, Column2)
and this can be used for many more columns as well
Note that the delimiter cannot be a blank or empty string so if you don't want to join your values with a delimiter, then just use one that will definitely not be in the columns and then substitute it afterwards (e.g. "~" or similar).
SUBSTITUTE(
COMBINEVALUES("~",
Column1,
Column2,
Column3
),
"~",""
)
Works perfect thank you for the quick reponse
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
104 | |
77 | |
72 | |
49 | |
47 |
User | Count |
---|---|
160 | |
85 | |
80 | |
68 | |
66 |