Excel Logic Function

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a logic function in EXCEL that will allow me to leave a cell empty
when certain conditions are met?

Thanks.
 
Since the formula needs to be in the cell it can only be pseudo empty

=""

If you want to be able to use it in a chart you can use NA() insytead of ""
otherwise you would need VBA


Regards,

Peo Sjoblom
 
You can make it look like the cell is empty--but it'll still have a formula in
it:

=if(and(a1>12,b1=3,c1="hithere"),"","this is not empty)
 
The NA() worked perfectly. Many thanks.

Dennis

Peo Sjoblom said:
Since the formula needs to be in the cell it can only be pseudo empty

=""

If you want to be able to use it in a chart you can use NA() insytead of ""
otherwise you would need VBA


Regards,

Peo Sjoblom
 

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