Hi everyone,
I just finished writing a decent TO-DO list that was to be used at the office while working on my home computer.
Unfortunately my office doesn't have working MAXIFS functions with their version of Excel... I've looked up a few alternatives but I don't think an array will work because the function needs to be nested in an INDEX function.
Essentially, the formula looks at the priority weights of different tasks in a list, and selects the highest priority item that is either on the same day as today or older and displays that task.
Here's the code I was using for my home version of the workbook if it helps.
Where:
Thanks in advance!
I just finished writing a decent TO-DO list that was to be used at the office while working on my home computer.
Unfortunately my office doesn't have working MAXIFS functions with their version of Excel... I've looked up a few alternatives but I don't think an array will work because the function needs to be nested in an INDEX function.
Essentially, the formula looks at the priority weights of different tasks in a list, and selects the highest priority item that is either on the same day as today or older and displays that task.
Here's the code I was using for my home version of the workbook if it helps.
Code:
=INDEX(TaskList[File],MATCH(MAXIFS(TaskList[!],TaskList[Due Date],"<="&TODAY()),TaskList[!],FALSE),)&" - "&INDEX(TaskList[Task],MATCH(MAXIFS(TaskList[!],TaskList[Due Date],"<="&TODAY()),TaskList[!],FALSE),)
Where:
- TaskList = Table name
- [File] = the column that lists the name of the files to be looked at
- [!] = is the priority column that is being evaluated by the soon to be replaced MaxIFS function
- [Due Date] = the date the items are due.
Thanks in advance!