Question

Whats an easy way to get the contents of a Google Spreadsheet as JSON using Google Apps Script?

Was it helpful?

Solution

In the Google Spreadsheet go to Tools > Scripts > Script Editor

Insert this code and hit the play button

function getValues() {
  var range = SpreadsheetApp.getActiveSheet().getDataRange();
  var json = Utilities.jsonStringify(range.getValues())
  Browser.msgBox(json);
}​
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top