Flo from Nashville: Can I VLOOKUP to two different tables?
Look for the item in catalog 1. If it found, then great.
But if it is not found, then move on and do a VLOOKUP from Catalog 2.
My solution: Start with =VLOOKUP(A4,Frontlist,2,False). Wrap that VLOOKUP
in the IFERROR function: =IFERROR(VLOOKUP(A4,Frontlist,2,FALSE),VLOOKUP(A4,Backlist,2,FALSE))
The article for this topic is at VLOOKUP To Two Tables You can find the link to download the file from today's video near the end of the same article.