Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
Here is an example table that i'm trying to write a measure for. My goal is to output a concatenated string of participants for each unique ID.
| ID | Participant |
| 001 | John |
| 001 | Terry |
| 001 | Albert |
| 002 | Susan |
| 002 | Roger |
| 003 | Sally |
| 003 | Tom |
| 003 | Chewbaklava |
Participants Conc = CALCULATE(CONCATENATEX(table, <expression>, "; ")
I'm struggling with the expression piece.
My visual will have columns: ID & [Participants Conc]:
| ID | Participants Conc |
| 001 | John; Terry; Albert |
| 002 | Susan; Roger |
| 003 | Sally; Tom; Chewbaklava |
Thanks for any suggestions or advice
Solved! Go to Solution.
Hi, @Chewbaklava
Please try formula like
Participants = CONCATENATEX(FILTER('Table','Table'[ID]=MAX('Table'[ID])),'Table'[Participant],"; ")
Best Regards,
Community Support Team _ Eason
Hi, @Chewbaklava
Please try formula like
Participants = CONCATENATEX(FILTER('Table','Table'[ID]=MAX('Table'[ID])),'Table'[Participant],"; ")
Best Regards,
Community Support Team _ Eason
Keep it simple.
Check out the example here
https://learn.microsoft.com/en-us/dax/concatenatex-function-dax
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |