Reputation: 107
I have a Google Form that is accepting responses and filling them into a Google Sheet 1.
I want Sheet 2 in the same file to continuously grab responses in certain columns of Sheet 1 and import them into Sheet 2. This Sheet 2 will serve as a viewable spreadsheet, or a spreadsheet that my code is compatible with (reordered a certain way, different column names, colored).
What command/equation can I use in Sheet 2 ("move_here") to pull those columns from Sheet 1 ("responses")?
Upvotes: 1
Views: 906
Reputation: 1
you can use:
={responses!A:Z}
or:
=FILTER(responses!A:Z; responses!A:A<>"")
or:
=QUERY(responses!A:Z; "select A,B,C,D"; 0)
or other 20+ possible formulae...
Upvotes: 1