Forum Discussion
Anonymous
4 years agoNot applicable
Return multiple values from a column based on duplicates
I have a measure that calculates and returns a scalar MAX from a column. Using this MAX value, I want to return a concatenated string from another column, especially if the table has duplicates. ...
- 4 years ago
Hey Anonymous,
try this code. For me it worked perfectly.Measure = CONCATENATEX( Filter('PlayerScore',PlayerScore[Score] = Max(PlayerScore[Score])),PlayerScore[Name] ,", ")
TOK
4 years agoHelper II
Hey Anonymous,
try this code. For me it worked perfectly.
Measure = CONCATENATEX( Filter('PlayerScore',PlayerScore[Score] = Max(PlayerScore[Score])),PlayerScore[Name] ,", ")
- Anonymous4 years agoNot applicable
Thank you!
- TOK4 years agoHelper II
I just finished a short tutorial on this topic.