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
6 years agoHi josephjross2
I think the problem is with VALUES( 'FR' ) - you passed a table as an argument but VALUES expected a column.
try this
Measure =
CONCATENATEX(
VALUES( 'FR'[Frequency] ),
'FR'[Frequency], ", "
)
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Mariusz
If this post helps, then please consider Accepting it as the solution.
josephjross2
6 years agoNew Member
Perfect! Thanks so much Mariusz ! I thought that had to be a whole table and not a single field. I appreciate the response and the help!
Joe