D
dwojtowi
I need to join two statements in an if and check if they are both tru
to continue (this is in a cell, not VBA)
=IF(COUNT(F9)=1 & COUNT(BK9)=1,"A","B")
I know i can do this:
=IF(COUNT(F9)=1,IF(COUNT(BK9)=1,"A","B"),"B")
But that doesnt apply here because I have to do this many times in
cell, and I will reach my limit on number of embedded if
to continue (this is in a cell, not VBA)
=IF(COUNT(F9)=1 & COUNT(BK9)=1,"A","B")
I know i can do this:
=IF(COUNT(F9)=1,IF(COUNT(BK9)=1,"A","B"),"B")
But that doesnt apply here because I have to do this many times in
cell, and I will reach my limit on number of embedded if