Reputation: 1117
Hi everyone,
I have 2 tabs in the google sheet:
Based on the 2 screenshot above, may I know why I'm only able to get the data started from row 8 in Form Responses after using the QUERY
function in google sheet?
As you can see from the 2nd screenshot, there is no Teacher 1, Teacher 2,Teacher 3, Teacher 4
although the Action are also Initial Entry
.
I couldn't figure out the reason, hope to get some advise. Any help will be greatly appreciated!
Upvotes: 0
Views: 180
Reputation: 27262
Try using the optional headers argument and see if that helps?
=query('Form Responses'!A:AD, "Select A, B, C where C = 'Initial Entry' label A 'Timestamp', B 'Name', C 'Action'", 0)
Upvotes: 1