I am working with three sheets for this project: Sheet 1 - Open Projects, Sheet 2 - Finished Projects, Sheet 3 - All Info. When a project moves from "Open" to "Finished", it is moved automatically from sheet 1 to 2 (these are raw data sheets that cannot be changed or combined). I need to pull down the status into Sheet 3 as it is monitoring both. I've changed the column names to try and make it more generic and easier to read.
This is the formula I used with the assumption that, if it can't find it in Sheet 2, it will then look in Sheet 1. What I'm receiving is "Finished" if it shows up on Sheet 2 but, if it is still on Sheet 1, I get #NO MATCH.
=IF(INDEX({Sheet 2 Status}, MATCH(ID@row, {Sheet 2 ID}, 0)) = "Team A Complete", "Finished", IF(INDEX({Sheet 2 Status}, MATCH(ID@row, {Sheet 2 ID}, 0)) = "Team B Complete", "Finished", IF(INDEX({Sheet 1 Status}, MATCH(ID@row, {Sheet 1 ID}, 0)) = "Pending", "Pending", IF(INDEX({Sheet 1 Status}, MATCH(ID@row, {Sheet 1 ID}, 0)) = "In Process", "In Process"))))
Is this not something Smartsheets can do, look for something on one sheet and then switch to a second if not found on the first?
My next step is to then pull in the name of the person who owns it based on the same logic.