Identifying the duplicate id names with latest date by formula or VBA

kismatstha

New Member
Joined
Sep 11, 2020
Messages
7
Office Version
  1. 2016
Platform
  1. Windows
Hello experts,

I have 3 columns in the sheet as illustrated below
Column A ->list of ID names
Column B->list of channel numbers corresponding to different ID names
Column C->list of dates corresponding to ID names and the channels numbers

ID channel date
A NEP-IND-12345 2020-05-20
A NEP-IND-12380 2023-09-23
B NEP-IND-23456 2006-01-29
B NEP-IND-23600 2008-08-17
B NEP-IND-23789 2024-01-09



Target: There are duplicate id names in column A and the target is to identify the ID names with latest date. The result should look like below:
ID channel date

A NEP-IND-12380 2023-09-23
B NEP-IND-23789 2024-01-09

SO can you help to give some formulas or macro code to identify the id names for duplicate with latest corresponding date?

Thank you.

-Susan
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Does this work?
Results MUST be in row 2 onwards

in E2 (Array formula)
=IFERROR(INDEX($A$2:$A$10, MATCH(0, COUNTIF($E$1:E1, $A$1:$A$10), 0)),"")

in F2
=AGGREGATE(14,4,(A1:A10=E2)*(C1:C10),1)

in G2
=INDEX($B$1:$B$10,AGGREGATE(14,4,($C$1:$C$10=F2)*($A$1:$A$10=E2)*ROW($B$1:$B$10),1))
 
Upvote 0
Solution
Does this work?
Results MUST be in row 2 onwards

in E2 (Array formula)
=IFERROR(INDEX($A$2:$A$10, MATCH(0, COUNTIF($E$1:E1, $A$1:$A$10), 0)),"")

in F2
=AGGREGATE(14,4,(A1:A10=E2)*(C1:C10),1)

in G2
=INDEX($B$1:$B$10,AGGREGATE(14,4,($C$1:$C$10=F2)*($A$1:$A$10=E2)*ROW($B$1:$B$10),1))
Thank you. works perfectly. :)
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,952
Members
449,095
Latest member
nmaske

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