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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

DAX NEW Column to join values by comma

Hello,

 

I have a table with the following format:

 

PK1, Value1

PK1, Value2

PK2, Value1

PK2, Value3

 

How to create in DAX a column with all the distict values separated by comma that are assoiated with the pk?

 

PK1, Value1, "Value1,Value2"

PK1, Value2, "Value1,Value2"

PK2, Value1, "Value1,Value3"

PK2, Value3, "Value1,Value3"

PK3, Value4, "Value4"

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

You can try this code to create a calculated column.

Combine by PK =
CONCATENATEX (
    FILTER ( 'Table', 'Table'[PK] = EARLIER ( 'Table'[PK] ) ),
    [Value],
    ","
)

Result is as below.

RicoZhou_0-1671070477424.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

thank you, it works

Anonymous
Not applicable

Hi @Anonymous ,

 

You can try this code to create a calculated column.

Combine by PK =
CONCATENATEX (
    FILTER ( 'Table', 'Table'[PK] = EARLIER ( 'Table'[PK] ) ),
    [Value],
    ","
)

Result is as below.

RicoZhou_0-1671070477424.png

 

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.