Reputation: 31
I have one google spreadsheet that syncs responses from two google forms. There are three sheets in this spreadsheet: form responses 1, form responses 2 and data. I want to sync the data from form responses 1 to to the relevant columns in data as soon as new responses appear in it. Is there a way to do this?
To illustrate, what I want to do here is take any new data from the "date" "activity" and "notes" and append it to the same name columns in the "raw data" sheet.
Upvotes: 0
Views: 158
Reputation: 1
try in Raw Data sheet in the Date column:
=FILTER('Form Responses 2'!B2:B; 'Form Responses 2'!B2:B<>"")
Upvotes: 1