N/A Error

R

Rich

Hi All

Is it possible that when a Formula returns a N/A result, can I change this
to say "Incorrect" r something else of my choice.

cheers
 
F

Fred Smith

Yes, check for N/A with an If statement, as in:

=if(iserror(your formula),"Incorrect",your formula)

Regards,
Fred.
 
J

JE McGimpsey

Not the best way - ISERROR() will mask other errors besides N/A. Better
to use ISNA() instead.
 
Top