The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello Everyone,
I am new to powerbi and trying to figure out the bese solution for grouping the the values in ID column based on values in the code column. Below is the table for reference.
ID | Code |
1 | ABC |
1 | ABC |
1 | ABCD |
2 | ABC |
3 | ABC |
4 | XYZ |
4 | XYZ |
This is what I want to display in the table visual:
ID | Code |
1 | ABC & ABCD |
2 | ABC |
3 | ABC |
4 | XYZ |
Any help is greatly appreciated. Thank you!
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
One of ways is to use CONCATENATEX DAX function in a measure.
Code measure: =
IF (
HASONEVALUE ( Data[ID] ),
CONCATENATEX ( DISTINCT ( Data[Code] ), Data[Code], " & " )
)
Hi,
Please check the below picture and the attached pbix file.
One of ways is to use CONCATENATEX DAX function in a measure.
Code measure: =
IF (
HASONEVALUE ( Data[ID] ),
CONCATENATEX ( DISTINCT ( Data[Code] ), Data[Code], " & " )
)
Thank you for your prompt response! This solution worked perfectly for my use case. I hope I learn tricks and trade from super users like you. I greatly appreciate your assistance!
User | Count |
---|---|
27 | |
12 | |
8 | |
8 | |
5 |
User | Count |
---|---|
31 | |
15 | |
12 | |
7 | |
7 |