I have 3 worksheets:
I want to do a SINGLE lookup that returns multiple rows and columns from TeamInfo.
I found that both VLookup and XLookup behave the same in this instance ( but I like XLookup better)
I want to do the command below to get rows and columns, but all I get is the 1000 rows and a single column:
XLOOKUP($A10:$A1000,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$D$21)
So it's basically doing this:
XLOOKUP($A10:$A1000,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$B$21)
If I use the command below I get one row and 3 columns (which is expected from the command)
XLOOKUP($A10,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$D$21)
My source data can fluctuate as many as 1000 rows. I don't want to do a fill down. I know I can do it with VBA but I feel I'm so close.
Goal:
I want to load the data and have the columns and rows Magically appear in my Output worksheet.
- "Input Data". has 5k+ rows and 20 columns.
- "TeamInfo" has 20 rows and 5 columns.
- "Output" processes all rows from Input and merging the TeamInfo data.
I want to do a SINGLE lookup that returns multiple rows and columns from TeamInfo.
I found that both VLookup and XLookup behave the same in this instance ( but I like XLookup better)
I want to do the command below to get rows and columns, but all I get is the 1000 rows and a single column:
XLOOKUP($A10:$A1000,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$D$21)
So it's basically doing this:
XLOOKUP($A10:$A1000,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$B$21)
If I use the command below I get one row and 3 columns (which is expected from the command)
XLOOKUP($A10,TeamInfo!$A$2:$A$21,TeamInfo!$B$2:$D$21)
My source data can fluctuate as many as 1000 rows. I don't want to do a fill down. I know I can do it with VBA but I feel I'm so close.
Goal:
I want to load the data and have the columns and rows Magically appear in my Output worksheet.