IFBlank Formula

  • Thread starter Thread starter aldricla
  • Start date Start date
A

aldricla

I'd like to run the following formula if Cells A11:A43
contain a blank. =IF(($A41>0)*(AND($B42>0)),$A41,"")

How do I go about this?

Thanks!
 
Thank you... How would I write the formula to populate
the cells with =IF(($A41>0)*(AND($B42>0)),$A41,"") if they
are blank using the ISBlank formula?
 
Here is a formula that I use to do a calculation if the user enter something
into cell A5

=IF(NOT(ISBLANK(A5)),(E4)+(C5)-(D5),"")

You would want something like this:

=IF(NOT(ISBLANK(SomeCell)),(=IF(($A41>0)*(AND($B42>0)),$A41,"")),"")

There might be a problem with the parentheses in the above, I didn't try it.
 

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