Converting the error "#N/A" into a cell value

R

RonLev

I would like to convert the error "#N/A" into a value; e.g., when the MATCH or LOOKUP function returns #N/A, I would like to change this error to 'no match', but the IF function will not accept #N/A to do this.
 
A

A.W.J. Ales

Ron,

=IF(ISNA(Yourformula),"No match",YourFormula)

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *

RonLev said:
I would like to convert the error "#N/A" into a value; e.g., when the
MATCH or LOOKUP function returns #N/A, I would like to change this error to
'no match', but the IF function will not accept #N/A to do this.
 
R

Robert Nguyen

=IF(ISNA(ORIGNAL FORMULA),"NO MATCH",ORIGINAL FORMULA)

-----Original Message-----
I would like to convert the error "#N/A" into a value;
e.g., when the MATCH or LOOKUP function returns #N/A, I
would like to change this error to 'no match', but the IF
function will not accept #N/A to do this.
 
A

A.W.J. Ales

YW Ron,
It's always nice to get feedback and to know that things work well.

--
Regards,
Auk Ales

* Please reply to this newsgroup only *
* I will not react on unsolicited e-mails *
 
G

Gbonda

Give this a try.



=IF(ISNA(VLOOKUP($AW9,Pivot!$A$5:$J$490,6,FALSE))=TRUE,"N
Match",(VLOOKUP($AW9,Pivot!$A$5:$J$490,6,FALSE)))

Gre
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top