Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
nat365
Frequent Visitor

Creating table with grouped data using DAX

Hi All,

I would like to create table that summarize my data:

NameStatusCode
AnnaY1
AnnaY2
MarkY3
AnnaN4
AnnaY2
MarkY3

 

to following format:

NameCodes
Anna1, 2
Mark3

 

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?

 

 

1 ACCEPTED SOLUTION
sjoerdvn
Super User
Super User

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], ","))

View solution in original post

2 REPLIES 2
sjoerdvn
Super User
Super User

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 🙂

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.