Forum Discussion
Andrew__K
Dec 04, 2023Brass Contributor
PowerQuery Remove Rows dependent on value in column.
Labelling software generates a transaction report that represents each label generated, I pull data from this report using PowerQuery. Each row is an individual label or transaction. When an erro...
- Dec 04, 2023
Alternative:
- Group by [Serial Number]: Count Rows + (keep) All Rows- Filter out [Count] > 1
- Combine tables (with Advanced Editor)
Lorenzo
Dec 04, 2023Silver Contributor
Alternative:
- Group by [Serial Number]: Count Rows + (keep) All Rows
- Filter out [Count] > 1
- Combine tables (with Advanced Editor)
- Andrew__KDec 04, 2023Brass ContributorThank you! with your suggestion, I was able to find a solution.
I ended up creating a helper merged column with PPN-DATE-SERIAL, then grouped by this column and filtered out any rows >1. Then I just expanded the All-rows column and removed the helper column. Thank you!