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
SandyBL
Advocate III
Advocate III

New Table based on combination of column values from other tables

I want to create a new table in powerbi that joins two columns from different tables and creates combination of all records from each column.  Thanks for the help!

 

Table 1:

Months

January 2017

February 2017

March 2017

 

Table 2:

Accounts

1

2

3

 

New Table

Month                 Account

January 2017       1

February 2017     1

March 2017         1 

January 2017       2

February 2017     2

March 2017         2

January 2017       3

February 2017     3

March 2017         3 

 

1 ACCEPTED SOLUTION
v-huizhn-msft
Employee
Employee

Hi @SandyBL,

You can use CROSSJOIN function, please click "New Table"(highlighted in yellow background) under Modeling on Home page, type the following formula.

Table = CROSSJOIN(Table1,Table2)

 You will get expected result.

1.PNG

Please review the attached file.

Best Regards,
Angelia

View solution in original post

2 REPLIES 2
v-huizhn-msft
Employee
Employee

Hi @SandyBL,

You can use CROSSJOIN function, please click "New Table"(highlighted in yellow background) under Modeling on Home page, type the following formula.

Table = CROSSJOIN(Table1,Table2)

 You will get expected result.

1.PNG

Please review the attached file.

Best Regards,
Angelia

MarcelBeug
Community Champion
Community Champion

A solution in Power Query (Query editor - Advanced editor):

let
    Source = Table2,
    #"Added Custom" = Table.AddColumn(Source, "Custom", each Table1),
    #"Expanded Custom" = Table.ExpandTableColumn(#"Added Custom", "Custom", {"Months"}, {"Months"}),
    #"Removed Other Columns" = Table.SelectColumns(#"Expanded Custom",{"Months", "Accounts"})
in
    #"Removed Other Columns"
Specializing in Power Query Formula Language (M)

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.