#VALUE error on VLOOKUP of text

C

craig_villines

I am receiving a #VALUE error when doing a VLOOKUP on 5 different
workbooks in a single cell. Only one workbook contains the data I am
looking for each data value. I have used ISERROR, ISNA and have been
unsuccessful in returning data. any idea's??

THANKS!!
 
G

Guest

You usually get #N/A or #REF from vlookups, when the range doesn't contain
your match criterion and when the column ref is invalid respectively. #VALUE
usually means you've asked it to eg add a number to a word...

=if(isna(vlookup1(),if(isna(vlookup2(),if(isna(vlookup3(),if(isna(vlookup4(),if(isna(vlookup(5),"Not
found",vlookup5())),vlookup4())),vlookup3())),vlookup2())),vlookup1())

is one (horrid) way to get what you want, where you replace vlookupx() with
the right vlookup formula.

The alternative is to perform each vlookup in a seperate cell and then apply
logice to those results.
 

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

Vlookup result in a message box 10
VLOOKUP VALUE ERROR 5
VLookup error - Sub or function not defined 4
Vlookup for value 1
Vlookup Error 0
VBA using VLookUp 1
Vlookup Error 1
VBA userform Vlookup Excel 1

Top