Cell Value must be zero

C

Codeman

When a cell is showing; #VALUE!
Because the amount has not been calculated how can I get it to just show
zero (0)

I am getting the value from other spreadsheets totals and when those totals
are not completed, because they are not applicable, I would like the final
tabulation worksheet to just put 0 automatically there. I do not want to
change the other worksheets from where the totals area coming from.

=SUM('Other Occupancies'!C13) is the formula in one of the cells on my last
spreadsheet and I want it to be showing zero (0) instead of #VALUE!

Can it be done to just show 0 (zero)?
 
S

Shane Devenshire

Hi,

Why not just

=IF(ISERR('Other Occupancies'!C13),0,'Other Occupancies'!C13)

or in 2007

=IFERROR('Other Occupancies'!C13,0)
 
N

Niek Otten

Absolutely right, Shane! I just didn't even notice the
SUMs..................
 
C

Codeman

Thank you, It worked and is shorter.

Shane Devenshire said:
Hi,

Why not just

=IF(ISERR('Other Occupancies'!C13),0,'Other Occupancies'!C13)

or in 2007

=IFERROR('Other Occupancies'!C13,0)

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire
 

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