Help Please!

Copper Contributor
I have multiple tables of 'core' data.

And multiple tables of custom configured data (based on custom combinations of the core data).

Both the above are on Sheet1.

I then have Sheet 2.
Sheet 2 is one large spreadsheet that needs to pull data from both the core data and custom configured data tables.
In one particular instance, I need to pull across multiple rows that relate to data in one cell/one column (eg Column A, Cell 1 reads = Tub A1. Tub A1, in this custom configuration, holds 5 Bins. The Bin data is reflected in Columns B, C, D, E and rows 1-5). So - when A1 is referenced on the spreadsheet on Sheet2, I need it to recognise that 5 rows of data need to come across from the table on Sheet 1 and the data in the columns within those rows, need to sit in specific columns on the spreadsheet, not necessarily in the exact order that they sit within the table.

Help please! Someone....
2 Replies
Hi.
It is not crystal clear what you want to do. Does this feel like a relevant starting point? Or do I misunderstand you completely
= TRANSPOSE(FILTER(Sheet1!B:B,A2=Sheet1!A:A))

I see now that you have several columns. Something like this might work

 

=LET(mtx,FILTER(Sheet1!B:E,A2=Sheet1!A:A),
rCount,ROWS(mtx),
cCount,COLUMNS(mtx),
mCount,rCount*cCount,
INDEX(mtx,QUOTIENT(SEQUENCE(,mCount),rCount)+1,MOD(SEQUENCE(,mCount,0),cCount)+1))

(make one row if you prefer that)