Jen Sather
Jen Sather

Reputation: 1

Formula for multiple if blank arguments

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

Answers (2)

JvdV
JvdV

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

GSerg
GSerg

Reputation: 78185

=if(isblank(B), "", if(isblank(A), "", B))

Alternatively:

=if(or(isblank(A), isblank(B)), "", B)

Upvotes: 1

Related Questions