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

Merging 2 Queries with Overlapping Data

I have two queries that I'd like to merge together. They have the same columns. The problem is that 1 query has gaps in some of the data. Here is an example:

RickWald_0-1640305192034.png

 

 Would I be able to merge these queries to fill in the 0's from table 1? Is it possible to delete "Apple" and "Banana" from table 1 and do a Full Outer Row merge?

 

Thanks!

 

 

 

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

You can append three pieces together.

  1. Table2 inner join with the null rows of Table1.
  2. Table1 left anti join with Table2.
  3. Table2 left anti join with Table1.

Sample query with Table1 and Table2 definitions embedded:

let
    Table1 =
        Table.FromRows(
            {{"Apple", 1, null}, {"Banana", 2, null }, {"Orange", 1, null}, {"Peach", 4, 4}, {"Pear", 2, 2}},
            type table [Fruit = text, Price = number, Weight = number]
        ),
    Table2 =
        Table.FromRows(
            {{"Apple", 1, 1}, {"Banana", 2, 2 }, {"Watermelon", 2, 3}},
            type table [Fruit = text, Price = number, Weight = number]
        ),
    Appended = Table.Combine(
        {
            Table.NestedJoin(Table2, {"Fruit"}, Table.SelectRows(Table1, each [Weight] = null), {"Fruit"}, "Merge", JoinKind.Inner),
            Table.NestedJoin(Table1, {"Fruit"}, Table2, {"Fruit"}, "Merge", JoinKind.LeftAnti),
            Table.NestedJoin(Table2, {"Fruit"}, Table1, {"Fruit"}, "Merge", JoinKind.LeftAnti)
        }),
    #"Removed Columns" = Table.RemoveColumns(Appended,{"Merge"})
in
    #"Removed Columns"

View solution in original post

3 REPLIES 3
v-angzheng-msft
Community Support
Community Support

Hi, @RickWald 

 

May I ask if your problem has been solved? Is the above post helpful to you?

The solution provided by @AlexisOlson  above can work for you.

 

If all your blank items can find matching values in another table, then you can even more easily get the results by appending the data from the two tables and then filtering out the blank rows.

Result:

vangzhengmsft_0-1640585556666.png

 

 

 

Best Regards,
Community Support Team _ Zeon Zheng


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

AlexisOlson
Super User
Super User

You can append three pieces together.

  1. Table2 inner join with the null rows of Table1.
  2. Table1 left anti join with Table2.
  3. Table2 left anti join with Table1.

Sample query with Table1 and Table2 definitions embedded:

let
    Table1 =
        Table.FromRows(
            {{"Apple", 1, null}, {"Banana", 2, null }, {"Orange", 1, null}, {"Peach", 4, 4}, {"Pear", 2, 2}},
            type table [Fruit = text, Price = number, Weight = number]
        ),
    Table2 =
        Table.FromRows(
            {{"Apple", 1, 1}, {"Banana", 2, 2 }, {"Watermelon", 2, 3}},
            type table [Fruit = text, Price = number, Weight = number]
        ),
    Appended = Table.Combine(
        {
            Table.NestedJoin(Table2, {"Fruit"}, Table.SelectRows(Table1, each [Weight] = null), {"Fruit"}, "Merge", JoinKind.Inner),
            Table.NestedJoin(Table1, {"Fruit"}, Table2, {"Fruit"}, "Merge", JoinKind.LeftAnti),
            Table.NestedJoin(Table2, {"Fruit"}, Table1, {"Fruit"}, "Merge", JoinKind.LeftAnti)
        }),
    #"Removed Columns" = Table.RemoveColumns(Appended,{"Merge"})
in
    #"Removed Columns"

Thank you Alexis!

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.

Top Solution Authors
Top Kudoed Authors