I have a workbook that has numerous columns. I am identifying the duplicate rows (duplicate in column "Project"), and of these duplicate rows, I need to remove the one with the oldest date:
| Project | name | date | $ | NOTE IF NEED TO REMOVE |
abc | JP | 10/1/2022 | 49 | Duplicate (Keep) |
| abc | JP | 9/3/2022 | 36 | Duplicate (Remove) |
| deb | Alf | 8/7/2022 | 82 | |
| xyz | Fred | 6/12/2022 | 27 | Duplicate (Remove) |
| xyz | Fred | 12/30/2022 | 30 | Duplicate (Keep) |
How do I remove the rows with the oldest date from this error report (want to throw error only on the most recent date)? I do not yet have the rightmost column in existence; if I did a simple filter would work
.