If Statement Help

  • Thread starter Thread starter yh73090
  • Start date Start date
Y

yh73090

What I need is to add that if G11 and H11 are blank then make th
cellcolor white.

=IF(OR(I$10>$H$11,I$10<$G$11),"",IF(I$10=$G$11,$G$11,$G$11+((I$10-$G$11)/$G$4)*$G$4))


Appreciate any help.

Y
 
try format...conditional formatting and add the appropriate formul
=isblank(g11,h11) and specify format you wan
 
This did not work, but rather than go that route. Could you give me
function for "If G11 and H11 are blank then make a range nofill.

I think this could be of more help rather than my first question.

Appreciate your assistance and sorry for the crazy way this is going.

Yo :roll
 
If G11 and H11 are blank then make a range nofill


=IF(AND(ISBLANK(G11),ISBLANK(H11)),"","not blank")

entered in a cell will display a blank if H11 and G11 are both blank.



--ron
 
If you concatenate two blank cells, it'll be blank:

=(g11&h11="")

(as the conditional formatting formula)

Or
=(trim(g11&h11)="")

if you're afraid that anyone will hit the spacebar instead of clearing contents.
 
this formula in the format condition seemed to work fine for me

=AND(ISBLANK(F12), ISBLANK(G12)
 

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

Back
Top