Issue with #VALUE!

S

ss

In cell H13 I get #VALUE! The formula in H13 is H9+1
In cell H9 I have =IF(D3=0,"",D3+179)

Is there a way to stop #VALUE! and just show a blank cell?

thanks
 
D

Dave Peterson

This means that H9 is non-empty and contains a non-numeric value. So I'm
guessing that H9 evaluates to "" (an empty string).

You could try this in H9:
=IF(D3=0,0,D3+179)
But this will show a 0 instead of ""

If showing a 0 is not possible, you could use this in H13:
=if(isnumber(h9),h9+1,"")
 

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

Similar Threads

Choose function 8
COUNTIF + ADDRESS Issue 1
combine formulas into 1 1
Find and Replace 3
Blanks ("") by Formula 2
Forcing the completion of a particular cell 3
VBA? 1
VBA? 3

Top