Am I missing something?
I'm trying to use a nested IF statement to check three cells in different columns for value. There should only be value in one of the 3 cells. Once it finds the the cell with the value, set column Type with value.
Here are the columns:
- Type (Number/Text) - Cell with the IF Statement
- Document (Multiple value drop-down)
- WIFI (Multiple value drop-down)
- Computer (Multiple value drop-down)
IF Statement
=IF(NOT(ISBLANK([Document]@row)), [Document]@row, "", IF(NOT(ISBLANK([WIFI]@row)), [WIFI]@row, "", IF(NOT(ISBLANK([Computer]@row)), [Computer]@row, "")))