LOOKUP Problem

  • Thread starter Thread starter Bliss
  • Start date Start date
B

Bliss

I need to use a LOOKUP on the output of a previous LOOKUP, which means my
first LOOKUP output needs to be sorted. Since I am creating an application
for use from others, is there a way to autosort the output of a LOOKUP so it
can be "LOOKUP'ed again?"
 
The VLOOKUP function has an optional Range_Lookup setting that defaults to
TRUE if left blank. When set to TRUE the lookup peforms an approximate
match, which means it looks for the first occurrence of a likely candidate.

Example: VLOOKUP(Value, LookupTable,ColumnIndex,[Range_Lookup])

If you set the Range_Lookup option to FALSE it returns an exact match only.
Setting the optional argument to FALSE will eliminate the need to sort your
lookupd data.
 
Have you thought of using INDEX with a MATCH function? For me, the
INDEX-MATCH has replaced the VLOOKUP.

Tim
 

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

Back
Top