Forum Discussion
prashantg364
Helper II
3 years agoDAX column
I am having data as per the below input table. Now I want to create a new column where if the cluster name is the same then I want to concatenate the band else result in band available in the existi...
- Anonymous3 years ago
Hi prashantg364 ,
I suggest you to try code as below to create a calculated column.
New column = CONCATENATEX(FILTER('Table','Table'[Cluster] = EARLIER('Table'[Cluster])),'Table'[Band],",")Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
lbendlin
Super User
3 years agoThere is no sort oder in Power BI. How are you identifying the "first" entry per cluster? or should all rows in your expected result say 700,3500 ?