Conditionally Remove Duplicate Rows - Power Query

karmaimages

Board Regular
Joined
Oct 1, 2009
Messages
112
Office Version
  1. 365
Platform
  1. Windows
Hi



I need to conditionally remove rows from a dataset within Power Query

ReferenceOwnerDateDepartment


I want to remove Duplicate References where Owner is "Joe Bloggs" Date = >31/12/2022 and department = "Finance"



So

ReferenceOwnerDateDepartment
123Joe Bloggs01/02/2023Customer Service
123Joe Bloggs01/02/2023Finance


On the above. I'd want to remove the duplicate row with reference "123" where Owner = "Joe Bloggs" and Date >31/12/2022 and Department = "Finance"



This should then leave the customer Service Row within the dataset



Is this possible to do, rather than manually doing it within the dataset?
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Add a custom column with formula
Excel Formula:
if ( [Date] >= #date(2022, 12, 31) and  [Owner] = "Joe Bloggs"and  [Department] = "Finance") then 1 else 0)
then apply a filter
 
Upvote 0

Forum statistics

Threads
1,215,077
Messages
6,122,991
Members
449,094
Latest member
masterms

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