Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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"
Solved! Go to Solution.
Hi @cristianabraga ,
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.
thank you, it works
Hi @cristianabraga ,
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.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
6 | |
6 | |
3 | |
2 | |
2 |