I am trying to find the next upcoming Date and its associated Task based off what activity is being performed and where it's taking place.
The formula I have to find the next upcoming date works perfectly:
=MIN(COLLECT({Date}, {Date}, >=TODAY(), {Activity}, ="Activity ", {Area}, ="Area"))
My problem is trying to get the Task associated with that date. (Pull information from another column in that same row)
I was attempting to use an INDEX/MATCH but what happens is that it goes through the Date column and pulls the first instance where the dates match, which is not the correct row.
=INDEX({Task}, MATCH(MIN(COLLECT({Date}, {Date}, >=TODAY(), {Activity}, ="Mechanically Complete", {Area}, ="CUB", {Children}, =0)), {Start}, 0))
Is there a way of getting the correct date and then pulling its associated Row # so that INDEX/MATCH would correctly find the Task?