Forum Discussion

gpiero's avatar
gpiero
Icon for Skilled Sharer rankSkilled Sharer
9 years ago
Solved

Create a table with a join one-to-many from Query editor table

I am looking for ad advice to solve the following problem.   My table listed below come from a Sharepoint Document Library. Each row identifies a category and the GUID related. In the column Utenti...
  • Anonymous's avatar
    Anonymous
    9 years ago

    HI gpiero,

     

    If you share some detailed information about these table structures it will be help for analysis.

     

    For your scenario, I think you can use power query to get the specify table and use 'Table.Join' function to merge these tables.

     

    Formula: get specify cell value.

     

    Table1= #"Previous Steps Name"[ColumnName]{RowIndex-1}

    Sample:

     

     

    Table1= #"Changed Type"[Utenti]{0}

    Full query:

     

    let
        Source = xxxxxxxx,
        #"Changed Type" = xxxxxxx,
        Table1= #"Changed Type"[Utenti]{0},
        Table2= #"Changed Type"[Utenti]{1},
        MergeTable=Table.Join(Table1,"User",Table2,"User")
    in
        MergeTable
    

     

    Reference link:

    Table.Join

     

    Regards,

    Xiaoxin Sheng