Sample Code Google Apps Script

Create a Doc on the fly function myFunction1() {const doc = DocumentApp.create(‘Test 1’);} Create a Doc add some content function myFunction2(){const doc = DocumentApp.create(‘Test 2’);const body = doc.getBody();Logger.log(body);body.appendParagraph(‘Hello World’);} Select a Doc add content to existing Google Doc function myFunction3(){const id = ‘1Rznazp0sPf9eSxFmHRHrWFK0H4lmju6FXDbuI3gZwLk’;const doc = DocumentApp.openById(id);const body = doc.getBody();const para = body.appendParagraph(‘Hello World 2’);para.appendText(‘new text’);Logger.log(para);} … Read more

Google Apps Script Resources

Guide to coding apps script Increase the power of your favorite Google apps — like Calendar, Docs, Drive, Gmail, Sheets, and Slides. Apps Script lets you do more with Google, all on a modern JavaScript platform in the cloud. Build solutions to boost your collaboration and productivity. https://developers.google.com/apps-script Google Apps Script Home Apps Script is … Read more

New IDE Apps Script Editor

In December 2020 Google released the ALL new Apps Script Editor. Its got a cleaner look, all in one page navigation menu, and easier than ever to write code. New code hints and options that were lacking in the legacy version. FREE Course Get started with Apps Script https://www.udemy.com/course/google-apps-script-ide/ Better and modern interface Options to … Read more

Google Apps Script 2020 Build 28+ Fun Projects Sites GSuite

Explore Google Apps Script see amazing Google Apps Script projects build power up your GSuite Google Apps Script Plus Google Apps Script will amaze YOU! – Loaded with content to teach you how to use Google Apps Script and create some amazing projects, Source code is included more content and projects added all the time … Read more