Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to adapt some functionality from this tutorial for my own ends in AdWords.

This is the function I wish to use.

function getColumnsData(sheet, range, rowHeadersColumnIndex) {
  rowHeadersColumnIndex = rowHeadersColumnIndex || range.getColumnIndex() - 1;
  var headersTmp = sheet.getRange(range.getRow(), rowHeadersColumnIndex, 
  range.getNumRows(), 1).getValues();
  var headers = normalizeHeaders(arrayTranspose(headersTmp)[0]);
  return getObjects(arrayTranspose(range.getValues()), headers);
 }

However, on running I get the error message,

Cannot find method getRange(number,number,number,number).

Which seems completely crazy. As far as I can see this is core functionality for the adwords API.

Am I missing something obvious? I'm passing 4 numerical parameters to getColumnsData when I call it, so even if the range is invalid, it should at least find the method, even if it can't execute properly.

share|improve this question
Ah thanks for the edit, I missed the code blocks because I copied and pasted. – Simon Hayward Nov 15 '12 at 16:37

migrated from webapps.stackexchange.com Nov 23 '12 at 10:44

1 Answer

This was a mistake on my part. This is not AdWords core functionality, but it is functionality for the Spreadsheets API. I have resolved this issue via another means now.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.