Forum Discussion

SClarke501's avatar
SClarke501
Frequent Visitor
3 years ago

Merging the differences between 2 tables

I've looked around and I'm not sure if this is possible using Power Query.

 

I have multiple excel files, all containing the exact same table. Same columns, same rows etc. Except the rows are filled in by different teams using their own copy of the file. They want them all merged into one master file.

 

I've only been able to append them to eachother which results in duplicated IDs.

 

Example with dummy data:

 

Table 1:

IDStatusHours Taken

123

  
456Complete4
789Complete7.65

 

Table 2:

IDStatusHours Taken

123

Complete6.43
456  
789  

 

Output Table:

IDStatusHours Taken

123

Complete6.43
456Complete4
789Complete7.65

4 Replies

    • SClarke501's avatar
      SClarke501
      Frequent Visitor

      How exactly would that produce my desired output?

       

      The team is largely irrelevant. It just needs to merge into one master document where all rows are filed in. Your solution would give me the same duplicated rows but with the team next to it, which doesn't allow me to eliminate rows?

      • Anonymous's avatar
        Anonymous
        Not applicable

        Hi SClarke501 ,

         

        You can use append queries and filter on column values.

        result:

        An additional step can be taken to remove duplicate records if necessary.

        let
            Source = Table.Combine({Table1, Table2}),
            #"Filtered Rows" = Table.SelectRows(Source, each ([Status] = "Complete")),
            #"Removed Duplicates" = Table.Distinct(#"Filtered Rows")
        in
            #"Removed Duplicates"

        Best Regards,
        Gao

        Community Support Team

         

        If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

        How to get your questions answered quickly --  How to provide sample data in the Power BI Forum