Help with Formula

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

Guest

I have a table with three columns. Column 1 has dates in it - no problem;
column two has a dollar amount added each day; column three is the problem -
it adds $0.07 to column two. The formula to do that I have already setup,
however, all the cells in column three have a value of $0.07 showing until
the value is added to column two.

What I would like to do is to keep column three blank until a value is added
to column two. How would this be done ?
 
elusiverunner said:
I have a table with three columns. Column 1 has dates in it - no problem;
column two has a dollar amount added each day; column three is the
problem -
it adds $0.07 to column two. The formula to do that I have already setup,
however, all the cells in column three have a value of $0.07 showing until
the value is added to column two.

What I would like to do is to keep column three blank until a value is
added
to column two. How would this be done ?

One way:
In C1 (for example), instead of the formula
=B1+0.07
use
=IF(B1="","",B1+0.07)
 

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