Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Kia Ora
I would like to know if there is a way of achieving the following: I have a table that has codes and a key that identifies related codes. In the example below all one's are related, all the two's and so on.
I need an output that combines the codes when they are related by a key - see the desired outcome column.
As seen in the example below there can be multiple codes that are the same for the key. I just need a combined outcome of each distinct code for each key.
I also need the outcome to shoew in the same format for each row. i.e. for key one each row must be ABC123 / BCD234 and not a mix of ABC123 / BCD234 & BCD234 / ABC123.
I would eb very gratful if anyone know if this is possible.
Code | Key | Desired Outcome | |
ABC123 | 1 | ABC123 / BCD234 | |
ABC123 | 1 | ABC123 / BCD234 | |
BCD234 | 1 | ABC123 / BCD234 | |
BCD234 | 1 | ABC123 / BCD234 | |
CDE345 | 2 | CDE345 / DEF456 | |
CDE345 | 2 | CDE345 / DEF456 | |
DEF456 | 2 | CDE345 / DEF456 | |
DEF456 | 2 | CDE345 / DEF456 | |
EFG567 | 3 | EFG567 / FGH678 | |
EFG567 | 3 | EFG567 / FGH678 | |
FGH678 | 3 | EFG567 / FGH678 | |
FGH678 | 3 | EFG567 / FGH678 |
Solved! Go to Solution.
@Anonymous
You can use this as calculated column
Column = CONCATENATEX ( CALCULATETABLE ( VALUES ( TableName[Code] ), ALLEXCEPT ( TableName, TableName[Key] ) ), [Code], " / ", [Code], ASC )
@Anonymous
You can use this as calculated column
Column = CONCATENATEX ( CALCULATETABLE ( VALUES ( TableName[Code] ), ALLEXCEPT ( TableName, TableName[Key] ) ), [Code], " / ", [Code], ASC )
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
68 | |
53 | |
39 | |
33 |
User | Count |
---|---|
70 | |
63 | |
57 | |
49 | |
46 |