I have a form that people can use to submit an "Updated Due Date". This can be Approved or Denied by a supervisor. Once approved it moves to an Approved Sheet with the Move Row automation. Multiple entries can be made for the same project.
I have a main sheet that pulls all the data together, and I would like the Updated Due Date to update as approved entries are made. If there is not approved updated due date, the value is the initial due date. Right now I am using and If error with an Index Match formula to pull from the Approved sheet, something like... =Iferror(Index(UpdatedDueDate, Match(ProjectNumberColumn, Project Number@row, 0), InitialDueDate@row). The only thing is, it is not pulling in the latest entries for updated due date, unless I manually sort the Approved sheet everyday by the Modified Date column.
When I try to add in a Max Collect formula, something like, =IFERROR(MAX(COLLECT(UpdatedDueDate, ProjectNumberColumn, ProjectNumber@row)), Initial Due Date@row)I am running into trouble with it not putting the Initial Due Date.
How can I get the Updated Due Date with the most recent Modified Date, that Matches by the Project Number?