Forum Discussion
Multiple columns from single list, Like Permutation & Combination of Each Cell value
| Key Word | Team Members |
| Group XX | A |
| Group XX | A |
| Group XX | A |
| Group XX | B |
| Group XX | B |
| Group XX | B |
| Group XX | C |
| Group XX | C |
| Group XX | C |
| Group XX | D |
| Group XX | D |
| Group XX | D |
As you can see, There is a new column added to the right which mentions the name of another member of the same group.
These cell values are taken from 'Team members' column and important condition that permutation should be done based on unique group name
| Member A | Member B | |
| Group XX | A | B |
| Group XX | A | B |
| Group XX | A | B |
| Group XX | A | C |
| Group XX | A | C |
| Group XX | A | C |
| Group XX | A | D |
| Group XX | A | D |
| Group XX | A | D |
| Group XX | B | C |
| Group XX | B | C |
| Group XX | B | C |
| Group XX | B | D |
| Group XX | B | D |
| Group XX | B | D |
| Group XX | C | D |
| Group XX | C | D |
| Group XX | C | D |
I am trying to build a network graph, In which I want to show individual connections of members.
As you can see, There is a new column added to the right which mentions the name of another member of the same group.
How can I possibly do this?
Anonymous ,
To be general, you can click new table and create a new table using DAX like pattern below:
New Table = UNION ( ADDCOLUMNS ( Table1, "MemberB", Table2[MemberA] ), ADDCOLUMNS ( Table2, "MemberB", Table3[MemberA] ) )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- v-yuta-msftCommunity Support
Anonymous ,
To be general, you can click new table and create a new table using DAX like pattern below:
New Table = UNION ( ADDCOLUMNS ( Table1, "MemberB", Table2[MemberA] ), ADDCOLUMNS ( Table2, "MemberB", Table3[MemberA] ) )Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.