Forum Discussion
selimovd
Most Valuable Professional
7 years agoConcatenate distinct values from column in Measure
Hello everyone, I have the following table: What I need now is the summary by year, but I also want to concatenate the unique values in the column status. This col...
Mariusz
Community Champion
7 years agoHi selimovd
You can use DAX expression like below.
Measure =
CONCATENATEX(
VALUES(YourTable[First Status]),
YourTable[First Status], ", "
)Regards,
Mariusz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
selimovd
Most Valuable Professional
7 years agoThank you @Mariusz this was exactly what I was searching for!