Forum Discussion

inlam's avatar
inlam
Regular Visitor
2 years ago

Power Query issue trying to create a new table

Hi Sirs, 

 

I'm struggling trying to create a new table/query in Power Query that gives me the correct output for this scenario:

 

From a Table 1.

YearMonth
20231
20232

 

And a Table 2: 

YearAmount
20231000
20231500

 

The expected output is: I need a Table 3 from use of Table1 and Table2. 

YearMonthAmount
202311000
202311500
202321000
202321500

 

I really appreciate any solution or light you could give me. 🙂

My kindest regards. 

1 Reply

  • inlam , You can use the Merge option in Power Query

    Merge Tables (Power Query) : https://youtu.be/zNrmbagO0Oo

     





     

     

    Code of merged table

     

    let
    Source = Table.NestedJoin(#"Table 1", {"Year"}, #"Table 2", {"Year"}, "Table 2", JoinKind.Inner),
    #"Expanded Table 2" = Table.ExpandTableColumn(Source, "Table 2", {"Year", "Amount"}, {"Table 2.Year", "Table 2.Amount"})
    in
    #"Expanded Table 2"