Reputation: 1
I am trying to build a formula for the following problem:
I have this part so far:
=IF(OR(ISBLANK(Mon!$C$14),(ISBLANK(Mon!D8))),"",(Mon!$C$14))
Upvotes: 0
Views: 492
Reputation: 75860
You could try:
=IF(COUNTA(A,B)=2,B,"")
So in your case:
=IF(COUNTA(Mon!C14,Mon!D8)=2,Mon!C14,"")
Upvotes: 0
Reputation: 78185
=if(isblank(B), "", if(isblank(A), "", B))
Alternatively:
=if(or(isblank(A), isblank(B)), "", B)
Upvotes: 1