In a google sheet of mine, I'm trying to use XLOOKUP to search the input of a cell for a partial match to a range of cells in another sheet. Here are 3 ways I've tried.
=XLOOKUP(A1,'Plant Orders'!B3:B1001,'Plant Orders'!B3:B1001,"Nothing",2)
=XLOOKUP(A1,'Plant Orders'!B2:B1000,'Plant Orders'!B2:B1000,"unknown",1)
=INDEX('Plant Orders'!B2:B1000, MATCH(A1,'Plant Orders'!B2:B1000,1))
All of these options are causing errors in different ways.
Option 1 requires an exact match.
Option 2 can do partial matches, but seems to return a random cell if there aren't any 'real' partial matches.
Option 3 is similar to 2.
I've used XLOOKUP in excel and had no issue with returning partial matches correctly. I'm not sure what the difference is with google sheets.
Xlookup not working in Sheets - Google Docs Editors Community
How do I make XLOOKUP work in Google Sheets?
XLOOKUP will not allow to lookup the entire column. For Google Sheets.
XLOOKUP in Google Sheets works only on the first line with the searched value - Stack Overflow
What is the XLOOKUP syntax in Google Sheets?
Can XLOOKUP pull data from another spreadsheet?
How is XLOOKUP different from VLOOKUP?
I have data in google sheets that looks like what I have below. I am trying to populate a value by referencing two cells, vertical and horizontal. I want the formula to return the figure where the horizontal and vertical reference points meet.
My Google Sheets formula looks like this =XLOOKUP(L6,Sheet1!A1:BB1,XLOOKUP(E58,Sheet1!A3:A78,Sheet1!B3:AE85,0,0,1))
However I keep getting an error - array arguments to xlookup are of different size. Is there a better way of doing this?
The source data and the documents with the formulas are in the same file but different worksheets.
The image below is just an example