Remove #N/A in vlookup result

G

Guest

I am using vlookup to return data for a particular reference number. If the
reference number is not available I would like to replace the #N/A returns
with the wording "No Response". Is this possible?
Thanks
 
G

Guest

Thanks for your answer but I've tried using your example and the formula is:-
=IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE),"No
Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)))

However my worksheet won't accept it and is indicating difficulty wth the
"No Response" part of the formula.

Any ideas?
 
G

Guest

One of your parentheses is in the wrong place, try:

=IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)),"No
Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE))

Regards
JG
 
G

Guest

Thanks, it works perfectly.

pinmaster said:
One of your parentheses is in the wrong place, try:

=IF(ISNA(VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE)),"No
Response",VLOOKUP($A6,'Voluntary Sector Final.xls'!voluntary,8,FALSE))

Regards
JG
 

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