Forum Discussion
Concatenating Multiple values from the same column based on other column values
- 5 years ago
I needed to concantenate only the values in the top 3 using my rank measure.
I figured out a solution to this.
Solution in the image below:
Hi, mpicca13
According to your description, I guess you want to Concatenate all the [SearchShellTerm] grouped by [Product Name], you can try this calculated column:
Concatenated value =
var _first=CALCULATE(MAX('Table'[SearchShellTerm]),FILTER('Table',[Product Name]=EARLIER([Product Name])&&[First place]=TRUE()))
var _second=CALCULATE(MAX('Table'[SearchShellTerm]),FILTER('Table',[Product Name]=EARLIER([Product Name])&&[Second place]=TRUE()))
var _third=CALCULATE(MAX('Table'[SearchShellTerm]),FILTER('Table',[Product Name]=EARLIER([Product Name])&&[Third place]=TRUE()))
return COMBINEVALUES(" , ",_first,_second,_third)
And you can get what you want, like this:
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I needed to concantenate only the values in the top 3 using my rank measure.
I figured out a solution to this.
Solution in the image below: