I am have trouble putting together a string of nested IF's using excel
Col 1 Values = ( 1, 2, 3)
Col 2 Values = (any number)
Col 3 Values = ( Y or N)
Here is what I need to accomplish:
IF COL1 = 1
IF COL2 > 20 ---> if true value equal N else value = Y
IF COL1 = 2
IF COL2 > 60 ---> if true value equal N else value = Y
IF COL1 = 3
IF COL2 > 60 ---> if true value equal N else value = Y
here is what I have:
=IF(C:C=1,IF(D>20,"N","Y") <-- This portion works
I have tried putting an OR and another IF at the end of this statement but only gets to the first IF.
=IF(C:C=1,IF(D>20,"N","Y"+OR,IF(C:C=1,IF(D>60,"N","Y))
doesn't work...
I am not real familuar with using Excel so any help would be most appreciated..
Col 1 Values = ( 1, 2, 3)
Col 2 Values = (any number)
Col 3 Values = ( Y or N)
Here is what I need to accomplish:
IF COL1 = 1
IF COL2 > 20 ---> if true value equal N else value = Y
IF COL1 = 2
IF COL2 > 60 ---> if true value equal N else value = Y
IF COL1 = 3
IF COL2 > 60 ---> if true value equal N else value = Y
here is what I have:
=IF(C:C=1,IF(D>20,"N","Y") <-- This portion works
I have tried putting an OR and another IF at the end of this statement but only gets to the first IF.
=IF(C:C=1,IF(D>20,"N","Y"+OR,IF(C:C=1,IF(D>60,"N","Y))
doesn't work...
I am not real familuar with using Excel so any help would be most appreciated..