Hi I have sheet - Incidents Recorded for the Month, which record the incidents that occuring within a month. see the pic below….
I want a formula that can return the latest Incident Description when a new incident is added. I have used the following formula -
=IFERROR(INDEX(COLLECT(CHILDREN([Incident Description]@row); CHILDREN([Record Date]@row); MAX(CHILDREN([Record Date]@row))); 1); "")
But this formula returns the 1st latest incident recorded.
Please advise