Short back story, we had our teachers create booking pages to schedule parent-teacher conferences. We are looking for a way to get a list of all the meetings that have been scheduled. So I need to export this information from all the users.
I have it mostly figured out with using the following command which uses a csv file with the users and the time frame of the events to export.
gam csv calendar_ptc.csv gam calendar ~Email print events after ~StartTime before ~EndTime query "student name" singleevents todrive
The issue is that this is creating a different sheet for every line in the CSV.
I want to get all the exports into a single sheet.
Thanks