Skip to content

Instantly share code, notes, and snippets.

View executed's full-sized avatar
👽
!((!(!(0)))) == 1

Dan Serbyn executed

👽
!((!(!(0)))) == 1
  • Berlin
View GitHub Profile
@Pyrrah
Pyrrah / importJSON.gs
Created October 19, 2021 11:26 — forked from stefanjudis/importJSON.gs
API data in google sheets
/**
* Retrieves all the rows in the active spreadsheet that contain data and logs the
* values for each row.
* For more information on using the Spreadsheet API, see
* https://developers.google.com/apps-script/service_spreadsheet
*/
function readRows() {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();