Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Two Share Point List no relationship joins

I have two tables from a share point list, both the tables have their primary ID's. I would like to take each ID from one table and show all the possibilities of the other table in one query. Is this possible to do. (see tables below)

 

Table 1 ID
3
7
8
9
12
13

 

 

Table 2 ID
1
2
3
4
5
6

 

Results Table 1 IDTable 2 ID
 31
 32
 33
 34
 35
 36
 71
 72
 73
 74
 75
 76
 81
 82
 83
 84
 85
 86
 91
 92
 93
 94
 95
 96
 121
 122
 123
 124
 125
 126
1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

If you want to create a new query, please create a new blank query, use code in Advanced editor as below:

let
    Source = Table.SelectColumns(#"Table 1",{"ID1"}),
    #"Added Custom" = Table.AddColumn(Source, "Custom", each #"Table 2"[ID2]),
    #"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom")
in
    #"Expanded Custom"

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

If you want to create a new query, please create a new blank query, use code in Advanced editor as below:

let
    Source = Table.SelectColumns(#"Table 1",{"ID1"}),
    #"Added Custom" = Table.AddColumn(Source, "Custom", each #"Table 2"[ID2]),
    #"Expanded Custom" = Table.ExpandListColumn(#"Added Custom", "Custom")
in
    #"Expanded Custom"

 

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors