Help create a IF statement to look to to seperate vookup data sour

G

Guest

Can someone help me build a statement that will look to one vlookup table to
find data, and if no data exists, go to a second vlookup table to find the
data (data will always be present in this second table). Here are my 2
individual vlookup statements:

=VLOOKUP($F15,SHRINKS,6,false)

=VLOOKUP($F15,STORES_TY_PL,false)

I appreciate the help.
 
G

Guest

Will this work for you:

=IF(ISNA(VLOOKUP($F15,SHRINKS,6,false)),VLOOKUP($F15,STORES_TY_PL,false),VLOOKUP($F15,SHRINKS,6,false))

HTH,
Elkar
 

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

Top