Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to write a formula such that if cell A1 displays "#VALUE", say "TRUE" in cell B1.

Here's my formula in cell B1:

=IF(A1="#VALUE!", "TRUE", "FALSE")

I get FALSE when A1 does not say #VALUE so that part is fine. But, when it does say #VALUE, I get a #VALUE error in cell B1, when I want it to say TRUE. How do I do this?

share|improve this question
Forgot to mention, the #VALUE error in cell A1 is caused by another formula...and I'm not trying to look for a string "#VALUE". – phan May 21 '12 at 16:48

2 Answers

up vote 8 down vote accepted

Use IFERROR(value, value_if_error)

share|improve this answer
does exactly what i wanted, thanks! i chose your answer since you were correct & first in line. – phan May 21 '12 at 18:15
Haha thanks, ninja typing skills if a bit thin on the examples – Charleh May 21 '12 at 18:44

This will return TRUE for #VALUE! errors (ERROR.TYPE = 3) and FALSE for anything else.

=IF(ISERROR(A1),ERROR.TYPE(A1)=3)
share|improve this answer
3  
+1. Worth pointing out that this one will work in versions before XL 2007 and, since it targets only #VALUE!, will avoid masking other errors. Interesting discussion of IFERROR here: dailydoseofexcel.com/archives/2012/04/18/is-iferror-bad – Doug Glancy May 21 '12 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.