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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.