C
CH53
I am trying to use an if statement that checks for a value across multiple
cells and I can't seem to get it to work. I am not sure if I am supposed to
use the COUNT or not.
As an example I have 5 cells
c1
c2
c3
c4
c5
And the value in these cells is either going to be Yes or No
Then I have cell
d1
This cell will have a value that is a number
I need to use the above data in 2 different ways - one and IF(AND and one in
and IF(Or
I came up with the following ideas but neither seem to work:
if(and(c1:c5="Yes",d1<1),"Good",If....(checks some other things)
If(or(c1:c5="No",d1<1),"Bad", If......(checks some other things)
OR
If(and(c1="yes",c2="yes",c3="yes",c4="yes",c5="yes",d1<1),"Good", If.....
If(or(c1="no",c2="no"c3="no",c4="no",c5="no",and(d1<1)),"Bad", if.....
Thanks in advance for your help.
cells and I can't seem to get it to work. I am not sure if I am supposed to
use the COUNT or not.
As an example I have 5 cells
c1
c2
c3
c4
c5
And the value in these cells is either going to be Yes or No
Then I have cell
d1
This cell will have a value that is a number
I need to use the above data in 2 different ways - one and IF(AND and one in
and IF(Or
I came up with the following ideas but neither seem to work:
if(and(c1:c5="Yes",d1<1),"Good",If....(checks some other things)
If(or(c1:c5="No",d1<1),"Bad", If......(checks some other things)
OR
If(and(c1="yes",c2="yes",c3="yes",c4="yes",c5="yes",d1<1),"Good", If.....
If(or(c1="no",c2="no"c3="no",c4="no",c5="no",and(d1<1)),"Bad", if.....
Thanks in advance for your help.