-
-
Save lutfiihsan/7fbc3b3b6c814900d8538fd03d4acdb7 to your computer and use it in GitHub Desktop.
Revisions
-
lutfiihsan renamed this gist
Apr 10, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
mhawksey created this gist
Mar 30, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ function combineData(){ var doc = SpreadsheetApp.getActiveSpreadsheet(); var sheets = doc.getSheets(); // get all the sheets var outSheet = doc.getSheetByName("combined"); // set where we want to write the results for (i in sheets){ // loop across all the sheets if (sheets[i].getSheetName().substring(0,9) == "followers"){ // if sheetname starts with 'follower' then var target = sheets[i].getSheetName().substring(12); // extract users name for target column var data = getRowsData(sheets[i]); // get extisting data from current sheet for (j in data){ data[j]["target"] = target; // create a target column with the users name } insertData(outSheet, data); // insert data in 'combined' sheet } } }