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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.