Reputation: 1
Above is the link for the file and I am trying to fetch data from Greige Data Sheet into individual sheets. I tried indexing by taking help from online resources available but couldn't get any benefit from it.
Upvotes: 0
Views: 117
Reputation: 2441
Screenshots/here refer:
Caveats
let
parameter/fnsBeam # (cell B14)
=LET(x_,SORT(UNIQUE(FILTER(Table_13[BEAM],--(1*Table_13[LOT]=1*$J$3)))),y_,INDEX(x_,(COLUMNS($A14:B14)/2),1),y_)
Notes: copy / paste to D14, F14 etc. as req.
LOOM # (cell B13, D13, etc.)
=INDEX(Table_13[LOOM],MATCH(B14,Table_13[BEAM],0))
notes: as before
DOFF # & METER #
=LET(x0_,IF(A14="",1*B14,IFERROR(1*A14,1*B14)),x_,FILTER(Table_13,--(1*Table_13[LOT]=1*$J$3)*(Table_13[BEAM]*1=x0_)),a_,1*ROWS(A17:A25)*(COUNTIFS($B14:B14,x0_)-1)/2,y_,INDEX(x_,SEQUENCE(MIN(ROWS(A17:A25),ROWS(x_)-a_),1,a_+1,1),MATCH(MID(A16,1,3),MID(Table_13[#Headers],1,3),0)),z_,IFERROR(y_,""),z2_,FILTER(z_,--(y_<>"")),z3_,IFERROR(z2_,""),z3_)
notes
Upvotes: 1