Hi There,
I have a status update sheet that has many columns. The three relevant here are:
1) Date Column = {createdDate}
2) Checkbox = {PSR}
3) free text column = {Overall Commentary}
-----
In another sheet I am trying to collect the row with both the latest date and has the checkbox ticked.
Here is my formula:
=INDEX(COLLECT({Overall Commentary}, {createdDate}, MAX({createdDate}), {PSR}, 1), 1)
----
It seems to only work if one of the checkbox rows IS the max date. If there is a higher date that does not have a checkbox ticked it returns the error. I have double checked all my references and have tested it with dummy data and with one criteria at a time and always get the same results, which is it will work if one of the rows with a ticked checkbox is also the highest date. I have also reversed the formula to: =INDEX(COLLECT({Overall Commentary}, {PSR}, 1, {createdDate}, MAX({createdDate})), 1) and get the same results. Any help would be greatly appreciated.
----
Edit: I need to filter rows to only those that have the checkbox column ticked, then select MAX date from this filtered list. Seems like only the max date is used as the "filter" and just throws error if checkbox is not ticked, I need it to be the other way around.
Thanks!