Forum Discussion
Merging the differences between 2 tables
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 👍
- SClarke5013 years agoFrequent 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?
- Anonymous3 years agoNot 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
- SClarke5013 years agoFrequent Visitor
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.