Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
Hi All,
I would like to create table that summarize my data:
| Name | Status | Code |
| Anna | Y | 1 |
| Anna | Y | 2 |
| Mark | Y | 3 |
| Anna | N | 4 |
| Anna | Y | 2 |
| Mark | Y | 3 |
to following format:
| Name | Codes |
| Anna | 1, 2 |
| Mark | 3 |
So the task is to create column thats joins distinct values with Status=Y from column Code to one String for each value in column Name.
Do you know is it possible to create using only DAX?
Solved! Go to Solution.
If you want to create a computed table, then use this (replace tbl with your table name)
SUMMARIZE(CALCULATETABLE(tbl, tbl[Status]="Y"),[Name],"Codes", CONCATENATEX(VALUES(tbl[Code]),[Code], ","))
If you want to create a computed table, then use this (replace tbl with your table name)
SUMMARIZE(CALCULATETABLE(tbl, tbl[Status]="Y"),[Name],"Codes", CONCATENATEX(VALUES(tbl[Code]),[Code], ","))
Thank you 🙂
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 17 | |
| 11 | |
| 9 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 14 | |
| 12 |