Intro

Google Apps Script is a JavaScript-based platform for automating Google Workspace tools (Google Sheets, Drive, Forms, Gmail).

  • Automate Google Sheets workflows
  • Build triggers (time-based, onEdit, onOpen)
  • Call external APIs
  • Create custom menus and UI (sidebars/dialogs)

Resources


Best Practices

Best practices 1 for designing a Google Sheets system with Apps Script

  • Batch reads/writes (getValues, setValues)
  • Minimize spreadsheet calls (each call adds significant latency)
  • Use caching for repeated data
  • Split long jobs with triggers
  • Use try/catch for reliability

Footnotes

  1. https://developers.google.com/apps-script/guides/support/best-practices

3 items under this folder.