Hi Everyone,
I was hoping I could avoid Support for this one - not sure what I'm getting wrong here.
I have an if statement, if a certain cell states "no" then I want it to return blank, otherwise I want it to evaluate an index-match formula.
What I'm running into is that even when the cell is equal to no, it's still running the index-match formula and turns up a partial match.
I have a testing column with an if statement that again checks if the cell states "no" then it returns blank, otherwise, it will return a "yes". This formula is working perfectly fine.
Does anyone know what is going wrong here?
EE Delegation Period Formula: =IF([EE Delegation Active?]@row = "No", "", (INDEX([EE Delegation Key]:[EE Delegation End], MATCH("Active" + [Employee Email]@row, [EE Delegation Key]:[EE Delegation Key], 0), 67))) + "-" + (INDEX([EE Delegation Key]:[EE Delegation End], MATCH("Active" + [Employee Email]@row, [EE Delegation Key]:[EE Delegation Key], 0), 68))
testing formula: =IF([EE Delegation Active?]@row = "No", "", "Yes")