Hide Formula Results

  • Thread starter Thread starter Sherry
  • Start date Start date
S

Sherry

I know I've done this before, but I can't find how to do
it now. I am using Excel 2003, and I have a 30 row colum
with formulas to calculate the two previous columns. I
do not want it to show anything in the cells where the
formulas are if there are no entries in the previous
columns. Does anybody know how to do this?

Thanks,
Sherry
 
Hi Sherry

if i'm understanding correctly, use an IF statement
e.g.
=IF(AND(A1="",B1=""),"",A1+B1)
this says if both A1 or B1 are empty then display nothing, otherwise display
the value of A1 + B1

Hope this helps
Cheers
julieD
 

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