Need correct IF(ISBLANK) formula when referencing whether one of twocells (OR) is blank, returning "

I

insitedge

=IF(ISBLANK(A1),IF(ISBLANK(B1),"",C1(likely wron formula);

Don't know if I use a comma or OR, or another formula, but if either
A1 or B1 is blank, I want "no value" in C1. If both A1 and B1 have
value then it returns the Value in C1.
 
R

Reitanos

It would work if you add an OR in there:
=IF(OR(ISBLANK(A1),ISBLANK(B1)),"",C1)
but it cannot both put a value in C1 (ie, live there) and check the
value in C1.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top