Remove All Rows Based on Duplicate Conditions

Randall

New Member
Joined
Jun 27, 2022
Messages
12
Office Version
  1. 365
Platform
  1. Windows
I have a data set that contains financial data. There are two types of records; R and D. Regular records are the total price paid for an order, and the D records are the discount for the Regular records. What I'm trying to do is determine how often we miss the discount in regards to our payment terms. In order to do this, I need to remove all R records that have a correlating D record. I've attempted to do this by removing duplicates based on specific columns (Invoice #, Item #, Date, etc). This works, but only removes the duplicate row and not both rows.

Is there a way to remove BOTH rows based on the duplicate condition, that way I'm only left with R records that contain discountable terms but have no correlating D record?

1662650105077.png
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
I think the best strategy here is to Group By the "Num Side B" column, and count the entries. Then remove all results that have two entries. This would leave you with all of the records that did not have a corresponding discount line. Then you expand the data back out.

Depending on your dataset, you may need to tweak this a little bit - you may need to additionally group by Open Date, Vendor, etc. to make it work correctly. This is easily done using the Advanced "Group By" feature.

Power Query:
let
    Source = Excel.CurrentWorkbook(){[Name="Table7"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Num Side B", Int64.Type}, {"Price Paid", type number}, {"Open Date", type datetime}, {"Payment Type", type text}, {"Discount Y/N", type text}, {"Vendor", Int64.Type}, {"Vend Name", type text}, {"CC Terms", Int64.Type}, {"CC Terms Desc", type text}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"Num Side B"}, {{"Count", each Table.RowCount(_), Int64.Type}, {"All Data", each _, type table [Num Side B=nullable number, Price Paid=nullable number, Open Date=nullable datetime, Payment Type=nullable text, #"Discount Y/N"=nullable text, Vendor=nullable number, Vend Name=nullable text, CC Terms=nullable number, CC Terms Desc=nullable text]}}),
    #"Filtered Rows" = Table.SelectRows(#"Grouped Rows", each [Count] <> 2),
    #"Removed Columns" = Table.RemoveColumns(#"Filtered Rows",{"Count"}),
    #"Expanded All Data" = Table.ExpandTableColumn(#"Removed Columns", "All Data", {"Price Paid", "Open Date", "Payment Type", "Discount Y/N", "Vendor", "Vend Name", "CC Terms", "CC Terms Desc"}, {"Price Paid", "Open Date", "Payment Type", "Discount Y/N", "Vendor", "Vend Name", "CC Terms", "CC Terms Desc"})
in
    #"Expanded All Data"

An example:

Screenshot 2022-09-08 153347.png
 
Upvote 0
Solution

Forum statistics

Threads
1,214,552
Messages
6,120,172
Members
448,948
Latest member
spamiki

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top