Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I recognize "#VALUE!" in Excel spreadsheets?

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?

like image 727
phan Avatar asked May 21 '12 16:05

phan


People also ask

How do you recognize a person?

To recognize someone, say thank you often, and do so in a specific and individual way. The more specific you are about what you're appreciating or recognizing, the better. It makes the recognition a lot more significant, and the people who were recognized are more likely to sustain that practice in the future.


1 Answers

Use IFERROR(value, value_if_error)

like image 147
Charleh Avatar answered Nov 02 '22 23:11

Charleh