Hello all, I am trying to achieve the following:
I have a list of values, some of them are duplicate. I have a date created column.
I want a formula to find duplicates and then find out if it is the most recent entry compared to its duplicates. From the image below I have the following formulas
Count Duplicate Column
=IF(COUNTIFS(Item:Item, Item@row, [Project Name]:[Project Name], [Project Name]@row) > 1, COUNTIFS(Item:Item, Item@row, [Project Name]:[Project Name], [Project Name]@row))
Duplicate Item and Project Column
=Item@row + " - " + [Project Name]@row
Max Date from Duplicate Column
In this column I was thinking of using the other columns as helpers to find if it is the most recent entry when comparing itself to the duplicates but I know I'm not doing it quite right.
Row 1 is the same as rows 4 and 7. Row 7 is the most recent entry so I want it to return the word "New" as it is the most recent entry.
Please help!
Many thanks,
Sam