After spending some time learning about a bunch of different things in Smartsheet that aren't helping with my problem, I thought I should just ask my question. I am missing something small I think.
I have tasks in my projects that need to be completed after it is implemented. I want to capture the "Execution Complete" task (basically when the users have their system in place) for reporting purposes.
I can find the Task Name that equals "Execution Complete":
=INDEX(Status:Status, MATCH("Execution Complete", [Task Name]:[Task Name], 0))
This does return "Complete", so far so good.
What I'm trying to do is basically an IF statement that it the Status = "Complete", return the value in End Date. If it isn't, then return "Ongoing".
=IF(INDEX([Status]:[Status], MATCH("Execution Complete",[Task Name]:[Task Name],0)) = "Complete", VLOOKUP("Execution Complete", [Task Name]:End Date, 5, false), "Ongoing")
This gives #UNPARSEABLE. Since there is only one row that will have "Execution Complete" in the Task Name column, I thought I would be able to search through the rows, until it finds the right row, and then evaluate the Status and return either the End Date or "Ongoing."
I'm storing the value in the sheet summary, to avoid using a helper sheets because I am using this same formula on each project to display in a report.
Does someone have an idea of where I went wrong?