I have a workbook with five or more tabs. I want to to do a lookup across all five tabs, so if I have a part number In tab 1 it will look in tab 2 for a value. If it doesn't find it, it will search in tab 3 and then 4 and then 5 and so on. How do i nest the x lookups using the final parameter?.
Hi All, I’m relatively new on google sheets and have a doubt. I have a google sheet (File A) which is constantly updated with data, and a completely new google sheet (File B) that I want to use to XLOOKUP data from File A.
Is there anyway this can be done ? Or is it possible for any way to auto import the data from File A to File B to look up?
Here is my mock-up of your source data.
You can use this formula to retrieve the Value that matches the ID and Term criteria from the source data.
=XLOOKUP(1,('Spreadsheet 2.csv'!A2:A199039=A2)*('Spreadsheet 2.csv'!E2:E199039=E2),'Spreadsheet 2.csv'!F2:F199039,"Not Found")
A couple of notes:
All three ranges in the formula must have the same range. You used F:F in one.
I included the "Not Found" response if there is no match. You can remove that part of the formula if desired or enter a different response in the quotes.
Hi,
In cell C2, enter this formula
=XLOOKUP(A2&B2,Sheet3!$A$2:$A$5&Sheet3!$B$2:$B$5,Sheet3!$C$2:$C$5,"")
Hope this helps.