Forum Discussion

selimovd's avatar
selimovd
Icon for Most Valuable Professional rankMost Valuable Professional
7 years ago
Solved

Concatenate 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's avatar
    7 years ago

    Hi 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.