Forum Discussion
Anonymous
3 years agoNot 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 a...
- Anonymous3 years ago
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.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot 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.
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.