I have a sheet that is filled out by an individual and then when the submission is complete, it will create a unique code.
I want to copy their data over to another sheet on an individual basis. Context is each week the person will fill out their form and update their results. Based on their email address and the week they select, that information will get pulled to their sheet.
So I have it successfully pulling the Incrementing Unique Code. From that Unique Code and a Label, I want to pull over the information that is in certain columns. So the Unique Code would figure out the Row, and the Label would figure out the Column.
=INDEX({L2F - Sheet}, COLLECT({L2F - OBCODE}, {L2F - OBCODE}, =[Week 1]8), COLLECT({L2F -Label}, {L2F - Label}, =Label@row))
With this, I get Invalid Data Type. Here's the row and sheet it should be pulling from
I tried creating a Helper Column (HLP-Phase) that is a simple formula "=Phase@row". I figured this would clear my invalid data type error since the Phase column is a dropdown.
My references are as follows:
L2F - Sheet -- The entire sheet the form submits to
L2F - OBCODE -- the Onboarding Code Column on the sheet
L2F - Label -- the first row of the sheet
The reason why I'm trying to use INDEX COLLECT in this manner is so I don't have to create potentially 100 references and their respective formulas.
Thoughts? I figured row_index and column_index would pinpoint the cell I'm looking for but it doesn't work the way my brain thinks it does.