Blank Cell

T

Tonks

I want a cell that has a formula to appear empty until I enter data into the
cell it's referring to. I am getting a zero and I want it to appear empty.
 
J

JoeU2004

Tonks said:
I want a cell that has a formula to appear empty until I enter data into
the
cell it's referring to. I am getting a zero and I want it to appear empty.

I think you want this paradigm:

=if(A1="", "", A1*2)

Caveat: If that formula is in A2, then use A2="", not ISBLANK(A2), to test
if A2 is __appears__ empty. Also, since A2 is not truly empty, formulas
like =A2*3 will not work when A2 evaluates to "" (null string). Use N(A2);
for example, =N(A2)*3
 
T

Tonks

The formula that I think I need to use is this one. I don't know where or how
to enter that I want it to remain blank until I've entered my data into B2
=SUM(IF((B2>0),C1+B2))
 
M

Mike H

Try this

=IF(B2>0,C1+B2,"")

Mike

Tonks said:
The formula that I think I need to use is this one. I don't know where or how
to enter that I want it to remain blank until I've entered my data into B2
=SUM(IF((B2>0),C1+B2))
 

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