Skip to content

Instantly share code, notes, and snippets.

@amattu2
amattu2 / Code.gs
Created January 18, 2022 13:54
A very simple Google Apps Script implementation to add pre-configured "Print Regions" to Google Sheets
const PRINT_HEADER = "Generating export...";
const PRINT_OPTS = {
'size': 0,
'fzr': false,
'portrait': false,
'fitw': true,
'gridlines': false,
'printtitle': false,
'sheetnames': false,
'pagenum': 'CENTER',
@CodingDoug
CodingDoug / README.md
Last active December 17, 2022 10:23
Copying data from Firebase Realtime Database to a Google Sheet in real time via Cloud Functions
@jalcantarab
jalcantarab / _jsonPuller.md
Last active August 10, 2024 20:34 — forked from crstamps2/jsonPuller
A Google apps script to pull json from a spreadsheet

JSON Puller - Google Apps Script

Transforms the data of a given Spreadsheet Sheet to JSON.

  • The frozen rows are taken as keys for the JSON.
  • The data taken for the values is only that after the frozen rows

Set up:

exportJSON(Spreadsheet) - transforms the data in the given sheet to JSON.