Forum Discussion
djk123
3 years agoNew Member
Concatenating comments based on unique values
Hello, I am relatively new to PowerBI so apologies the question is not framed well. I have the following dataset (simplified for ease). I want to combine the comments where the city and measur...
Jihwan_Kim
Super User
3 years agoHi,
Please check the below picture and the attached pbix file.
Expected result CC =
CONCATENATEX (
FILTER (
'Table',
'Table'[City] = EARLIER ( 'Table'[City] )
&& 'Table'[Measure] = EARLIER ( 'Table'[Measure] )
),
'Table'[Comments],
", "
)