Hey guys I am stuck with a simple problem.
Can anyone please help me out
Basically I am doing sum of Q11:Q31
I need it to sum and show the result but with few IF conditions
cell C3 needs to have some data in it
cell Q2 needs to have some data in it
O33 needs to be equal to P33, V33 and W33
If it does not meet conditions then it would show ERROR
I have this formulae which works perfectly if P33=O33.
However I am not able to do P33=O33=V33=W33
Can anyone please help me
Can anyone please help me out
Basically I am doing sum of Q11:Q31
I need it to sum and show the result but with few IF conditions
cell C3 needs to have some data in it
cell Q2 needs to have some data in it
O33 needs to be equal to P33, V33 and W33
If it does not meet conditions then it would show ERROR
I have this formulae which works perfectly if P33=O33.
However I am not able to do P33=O33=V33=W33
Code:
=IF(AND(C3<>"",Q2<>"",P33=O33),SUM(Q11:Q31),"ERROR")
Can anyone please help me