ISERROR

D

Dave

I need to include the ISERROR function into
=IF(U12,U12,X12)
so it will not return #N/A or #VALUE!.
Any ideas?
Thanks for all of the help in the past.
 
F

Frank Kabel

Hi Dave

which part of your function can return #N/A or #VALUE: U12 and/or X12
depending on that you can create an IF function: e.g.
=IF(ISERROR(IF(U12,U12,X12),"error in function",IF(U12,U12,X12)))

HTH
Frank
 
F

Frank Kabel

Hi Dave
then i would use the follwoing:
IF(U12,U12,IF(ISERROR(X12),"error in X12",X12))
 
D

Dave

I tried IF(U12,U12,IF(ISERROR(X12),"error in X12",X12))
and =IF(U12,U12,IF(ISERROR(X12),"error in X12",X12))
they both show up as text and not a formula

thanks Frank
 
F

Frank Kabel

Hii Dave
sorry, i forgot the '=' in my last post. Including it, the formula
should work (maybe the cell is´formated as text). Goto 'Format - Cell'
and set the format to general. After that reenter the formula. should
work


Frank
 
D

Dave

Hi Frank

I formated the cell as general and it still shows as text. It was formated
as numbed with 2 decimal places

I used =IF(U12,U12,IF(ISERROR(X12),"error in X12",X12))

Thanks Again
 

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