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
ruanctorres
Frequent Visitor

Joining tables without primary key

Hi everybody,

 

Im trying to join tables with no primary keys. Is it possible?

 

For example:

 

Table 1:

table1.JPG

 

Table 2:

table2.JPG

 

 

A need a table result where for each day I have all the rows of the table 2. I tried merging, but the result was this:

 

table3.JPG

 

Thanks for helping.

 

 

 

 

 

1 ACCEPTED SOLUTION

Hi Lydia,

 

Thanks for your time. In fact, I solved this problem creating a column in both tables, filling the rows with the same result, for example "1".

 

Best regards.

View solution in original post

3 REPLIES 3
dwscottjr
New Member

If I have 2 queries and I want to join them without a key, I make a custom column in the first query that is the second query:

 

= Table.AddColumn(Source, "From Table 2", each #"Table2")

v-yuezhe-msft
Employee
Employee

@ruanctorres,

Are there matching rows between the two tables? If not, it will return null result when you use "Merge Queries", please create new table using the DAX below and check if you get expected result. If you have matching rows between two tables, expand the new column after you use "Merge Queries", you can review this blog to get more details.

Table  = CROSSJOIN(Table1,Table2)


Regards,
Lydia

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Lydia,

 

Thanks for your time. In fact, I solved this problem creating a column in both tables, filling the rows with the same result, for example "1".

 

Best regards.

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.