Dealing with #VALUE!

M

Maracay

Hi guys,

I created a function but in some rows I got a number and in other I got a
#VALUE!, that is OK, now I need to ask if cell > 0 then do this if not do
that, but look like because the #VALUE! I am getting, the IF function is not
working properly, my question is how can I deal with #VALUE!, if I could make
#VALUE! Zero or “ “ depending on the case could be great

Thanks
 
J

John Moore

Can you show an example ,,, sounds like an IFISERROR would fix ,, but post an
example so we can be sure.
 
D

Dave Peterson

In a worksheet formula?

=if(iserror(a1),"some kind of error",
if(isnumber(a1),if(a1>0,"greater than 0","not greater than 0"),
"not a number"))
 

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