Forum Discussion
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:
| ID | Status | Hours Taken |
123 | ||
| 456 | Complete | 4 |
| 789 | Complete | 7.65 |
Table 2:
| ID | Status | Hours Taken |
123 | Complete | 6.43 |
| 456 | ||
| 789 |
Output Table:
| ID | Status | Hours Taken |
123 | Complete | 6.43 |
| 456 | Complete | 4 |
| 789 | Complete | 7.65 |
4 Replies
- IdrissshatilaSuper User
Hello SClarke501 ,
You could add a column for each table to specify the team.
If I answered your question, please mark my post as solution, Appreciate your Kudos 👍
- SClarke501Frequent 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?
- AnonymousNot 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 TeamIf 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