So I have a function that I placed into excel's "Conditional Formatting", which should turn a cell "Red" if the function returns True, else leave the cell alone if the function returns false. (Using the Rule type: Use a formula to determine which cells to format)
My formula is:
=IF(ISNUMBER(MATCH(INDIRECT("S"&ROW()+4),INDIRECT(ConvertToLetter(MATCH(INDIRECT("R"&ROW()+4),DropDown!1:1,0))),0)), TRUE, FALSE)
The whole equation behaves the way I expected it to, returning true if there is a match and false if there isn't, but isn't turning the cell red despite being "true".
To give a step by step on what happens near the end of the evaluation of the function, after all calculations are done:
=IF(ISNUMBER(2), TRUE, FALSE)
=IF(TRUE, TRUE, FALSE)
=TRUE
I was wondering what I'm doing wrong, which results in the conditional formatting not working.
Logically, it should work but I am not that experienced in excel so maybe there is something I am overlooking.
Bookmarks