Hi,
I am trying to upload from Google Sheets using the bulk upload from Google Spreadsheet function but it's not working. The script will run fine but there are no entries in the logger and no bulk entries in the bulk section. It appears to not read the file correctly, but it's formatted correct way as if I were going to upload it through AdWords Editor. The particular campaign that I am trying to upload is a brand new campaign with keywords, ad groups, campaign settings, negative keywords, and campaign settings.
What do I need to change to make this work?
function main(){
function bulkUploadFromGoogleSpreadsheet() {
var spreadSheet = SpreadsheetApp.openByUrl(SPREADSHEET_URL);
var sheet = spreadSheet.getActiveSheet();
}
}
Thanks!