I feel like I've posted 1000 Index Match questions this year!
I have a formula (below) that is returning and individual who has the same Date Assigned field but not that same MLL ID. The MLL ID is supposed to be the thing that stops the date range from looking at all the cells. I'm trying to get Ciara as a returned value because she is the most recent individual who has had a date assigned.
AT.Helper Column: =IF(COUNTIF([MLL ID]:[MLL ID], [MLL ID]@row) > 1, INDEX([Assigned To]:[Assigned To], MATCH(MAX(COLLECT([DA.Helper]:[DA.Helper], [MLL ID]:[MLL ID], [MLL ID]@row)), [DA.Helper]:[DA.Helper], 0)), [Assigned To]@row)
DA.Helper Column: =IF(COUNTIF([MLL ID]:[MLL ID], [MLL ID]@row) > 1, MAX(COLLECT([Date Assigned]:[Date Assigned], [MLL ID]:[MLL ID], [MLL ID]@row)), [Date Assigned]@row)
Any help would be greatly appreciated!