Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

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
  • 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.

1 Reply

  • v-juanli-msft's avatar
    v-juanli-msft
    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.