Cell formulas

V

Vickie T.

I have two cells that I am using an IF function so that if there is no data
in cells used in the formulas, the cell is blank instead of showing 0.00. I
want to use the two cells with the IF formulas in the formula for anothr
cell. When I do this, the cell shows #VALUE! not the answer to the formula.
How can correct this?
 
P

Pete_UK

You could have the original cells return 0, but apply conditional
formatting to those cells such that if the cell value is zero then use
a white foreground colour so that the cell appears blank. This will
avoid the #VALUE errors in your subsequent formula.

Alternatively, you could use something like this:

=IF(OR(A1="",B1=""),"",your_formula)

assuming A1 and B1 are the two cells containing your IF formulae.

Hope this helps.

Pete
 
V

Vickie T.

I tried the function you gave me and it returns a blank cell not the answer
to the calculation the formula should give.
 

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