I use Google Analytics to add to sheets. The specific query that I would like to run returns 70 thousand data rows. Since Google Analytics returns a maximum of 10 thousand. In time, I broke the queries into 7, where the initial index was 10 001, 20 001, etc.
So, now I have 7 data tabs, each of which contains 10 thousand rows.
I would like to combine them all into one big table. I looked into the =query() function and looked for it without success. I also looked at =join() , but also did not succeed.
Even if I were successful with these options, I’m not sure that they are the “best”.
Thanks to SO, I have limited experience with the Google Apps script (but collectively quite simple). I'm not sure if I should try to figure out how to do this with a script or if there is a convenient built-in function.
I also realize that I skipped 200k sheets per sheet.
For example, I have data already available among 7 tabs. It seems ineffective to bring them all in one big table from the moment of duplication.
My ultimate goal is to query the data as a group, using, for example, the function =sum(filter()) and / or =query() . I need to cut n this data in several ways, but currently it spreads over 7 tables.
- How can I join one big table
- Is there a good idea, and if not, is there a better way?
source share