Forum Discussion
bparker
Oct 11, 2019Copper Contributor
If Formula Error
I am trying to use the if function below to display employee performance rankings. I created a base sheet to compile data from other sheets, and I created the equation below: =IF(Base!E3=1, Base!...
PReagan
Oct 11, 2019Bronze Contributor
It appears that you missed a couple of "(" marked in red.
Additionally, you must finish the last argument of the last If() function marked in green.
=IF(Base!E3=1, Base!A3, IF(Base!E4=1, Base!A4, If(Base!E5=1, Base!A5, If(Base!E6=1, Base!A6, If(Base!E7=1, Base!A7, If(Base!E8=1, Base!A8, If(Base!E9=1, Base!A9, If(Base!E10=1, Base!A10, If(Base!E11=1, Base!A11, If(Base!E12=1, Base!A12, IF(Base!E13=1, Base!A13, If(Base!E14=1, Base!E14,"ERROR"))))))))))))