I am trying to pull in all columns of data from my "source sheet" into my "destination" sheet. The source sheet has about 2000 ID row entries and 34 columns of data for each entry. The destination sheet will be 5-10 ids. When you input that ID on the destination sheet I want the destination sheet to pull in all 34 columns of data from the source sheet row. Is it possible to do a range of column data to pull into the destination sheet from the source or will I have to index each column individually for all 34? The data in most columns is either text or checkbox (I converted the checkbox columns to text and now show with true or false) All columns in each sheet are labeled the same
Here is what I thought would work:
=INDEX({Source Sheet Full Range}, MATCH([ID Input]@row, {Source LO ID}, 0))
translation =INDEX({2000 rows of 34 columns which "should" populate with the full data from the ID row in the source sheet}, MATCH([user input of a specific ids]@row, {ID column in source sheet matching user input ID}, 0))
References
- Source sheet full range = all 34 columns in the refence sheet pop-up are selected
2 . ID input — a user types in the id in the destination sheet
3. Source LO ID = only the the LO column selected in the refence sheet pop-up
Source Sheet
Destination Sheet
What I assume should happen in the destination sheet when a user types in the ID in the ID input column all 34 columns of data should populate from the source sheet but it is not happening I am getting an invalid column value error.