function getAllValuesOnSpreadsheet() {
var SPREADSHEET_URL = 'INSERT_SPREADSHEET_URL_HERE';
// Name of the specific sheet in the spreadsheet.
var SHEET_NAME = 'INSERT_SHEET_NAME_HERE';
var ss = SpreadsheetApp.openByUrl(SPREADSHEET_URL);
var sheet = ss.getSheetByName(SHEET_NAME);
// This represents ALL the data.
var range = sheet.getDataRange();
var values = range.getValues();
// This logs the spreadsheet in CSV format.
for (var i = 0; i < values.length; i++) {
Logger.log(values[i].join(','));
}
}
--
-- You received this message because you are subscribed to the Google Groups AdWords Scripts Forum group. Please do not reply to this email. To post to this group or unsubscribe please visit https://developers.google.com/adwords/scripts/community.
---
You received this message because you are subscribed to the Google Groups "AdWords Scripts Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-scripts+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-scripts/79d5e916-91fe-434e-a034-8197ad7e8cb9%40googlegroups.com.
Hey AnthonyWhat is the google sheet template to ingrate data with AdWords?ᐧ
To unsubscribe from this group and stop receiving emails from it, send an email to adwords-scrip...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-scripts/79d5e916-91fe-434e-a034-8197ad7e8cb9%40googlegroups.com.