#VALUE!

P

Pencil

I want A1 to report an error that is in A6 but my formula doesn't work.
A6 reads: #VALUE!
The formula A1 is =IF(AN6=#VALUE!,"You messed up","")

Help.
 
R

Ron Rosenfeld

I want A1 to report an error that is in A6 but my formula doesn't work.
A6 reads: #VALUE!
The formula A1 is =IF(AN6=#VALUE!,"You messed up","")

Help.

A little more involved, if you want to test ONLY for a #VALUE! error:

=IF(ISERR(A6),IF(ERROR.TYPE(A6)=3,"You Messed Up","Not Value Error"),"OK")


--ron
 
Top