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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

I neet to create a table from two tables

Hi all!

I need to create a new table from two existing tables.

First table ('Orders')

I have a summarized table with delivery date, store number and orders (for each store and date)

sebonidas_0-1635196719418.png

 

Second table ('Claims')

I have a summarized table with store (N Local), Date of claim (Fecha de creación) and claims (for each store and date)

Claims.PNG

I need to create a new table with structure (date, store, orders, claims) for each store and each date..

For example for 2997 store, and date 25/10/2011 we have 81 orders and only 1 claim

 

Pls your comments

Thanks!

SM.-

 

1 ACCEPTED SOLUTION
v-robertq-msft
Community Support
Community Support

Hi, @Anonymous 

According to your description, I think you can use the “Merge query” in the Power query to left join the two tables with two external keys, you can follow my steps:

  1. Go to the Power query and merge a new query:

vrobertqmsft_0-1635757024801.png

 

  1. Set the merge query like this:

vrobertqmsft_1-1635757024804.png

  1. Then you can get the output table like this:

vrobertqmsft_2-1635757024806.png

 

You can download my test pbix file below

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-robertq-msft
Community Support
Community Support

Hi, @Anonymous 

According to your description, I think you can use the “Merge query” in the Power query to left join the two tables with two external keys, you can follow my steps:

  1. Go to the Power query and merge a new query:

vrobertqmsft_0-1635757024801.png

 

  1. Set the merge query like this:

vrobertqmsft_1-1635757024804.png

  1. Then you can get the output table like this:

vrobertqmsft_2-1635757024806.png

 

You can download my test pbix file below

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hello @Anonymous,

 

There is two ways.

 

First: you can add it as regular calculated column. So select table --> New column --> Name it and imput the formula.

StenbergAleksi_1-1635244533362.png

 

Second you can add it to your DAX:
Just like this for example.

StenbergAleksi_2-1635244602467.png

Hope this helps!

Anonymous
Not applicable

Hello Sebonidas,

 

If you really want to create a new table you could create calculated table with naturalinnerjoin function or use summarizecolumns if the tables have relationship.

 

But if you just need to mix the data you could just use lookup function to add a new calculated column for either table.

 

You can add this to orders table:

lookupvalue('Claims'[Claims],'Claims'[N° local],'Order'[Store_nbr]

Hope this helps.

 

If this solved the issue, please mark the comment as solved

Anonymous
Not applicable

thanks @Anonymous  but i have created the order table like this.

 
Orders = SUMMARIZE(Order_Cabecera, Order_Cabecera[FechaEntrega].[Date],Order_Cabecera[Store_nbr], "Orders", COUNT(Order_Cabecera[CodigoPedido]))
 
How can i add the LOOKUP??
 
Thanks a Lot!
SM.-

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

Find out what's new and trending in the Fabric Community.

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.