Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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 |
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 👍
Proud to be a Super User! | |
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?
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
The problem is there will be blank rows and I don't want to get rid of them. Filtering them out after the fact will only show the ones that have been filled in by someone, but this is for a master record that contains everything.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
72 | |
67 | |
42 | |
28 | |
20 |