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

Re: N/A Error by Fred

Fred
Sun May 11 23:31:10 CDT 2008

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

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

Regards,
Fred.

"Rich" <Rich@discussions.microsoft.com> wrote in message
news:3F411B57-9379-4A1C-841F-8E94C761F23A@microsoft.com...
> 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
>
>


Re: N/A Error by JE

JE
Sun May 11 23:33:56 CDT 2008

One way:

=IF(ISNA(<your formula>),"incorrect",<your formula>)

In article <3F411B57-9379-4A1C-841F-8E94C761F23A@microsoft.com>,
Rich <Rich@discussions.microsoft.com> wrote:

> 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

Re: N/A Error by JE

JE
Sun May 11 23:34:59 CDT 2008

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

In article <u8JPGk#sIHA.3680@TK2MSFTNGP05.phx.gbl>,
"Fred Smith" <fsmith11@yahooo.com> wrote:

> Yes, check for N/A with an If statement, as in:
>
> =if(iserror(your formula),"Incorrect",your formula)
>

Re: N/A Error by Rich

Rich
Sun May 11 23:40:02 CDT 2008



"Fred Smith" wrote:

> Yes, check for N/A with an If statement, as in:
>
> =if(iserror(your formula),"Incorrect",your formula)
>
> Regards,
> Fred.
>
> "Rich" <Rich@discussions.microsoft.com> wrote in message
> news:3F411B57-9379-4A1C-841F-8E94C761F23A@microsoft.com...
> > 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
> >
> >
>
> Thank you