Hello,
I am unsure if what I am doing is possible or not but I need to return a value with specific criteria. I need the latest "Revised Date" from the most recent amended version (Occurrence). However, it is possible the latest amended has no updated "Revised Date" field so it should keep the previous revised date..
In my example for Felx, the New/Final End Date should still be 8-Sep-2021.
Here is my formula:
=IFERROR(IF(Entry@row = "Amended", "", INDEX(COLLECT([Revised Date]:[Revised Date], [Revised Date]:[Revised Date], NOT(ISBLANK(@cell)), [Family Name]:[Family Name], [Family Name]@row, Occurence:Occurence, MAX(COLLECT(Occurence:Occurence, [Family Name]:[Family Name], [Family Name]@row))), 1)), Date@row)
So I'm trying to collect the date from the latest amendment (number in occurrence column) but only if there is a date in the revised date cell. Where am I going wrong with this?
Thank so much for your help.