How to Create a PDF and Email from Sheet data using Google Apps Script code lesson

How to Create a PDF and Email from Sheet data using Google Apps Script code lesson Generate a PDF document on the fly and send that document as an attachment to an email with all the data coming from a spreadsheet. Standalone script connecting to a spreadsheet for data and updating the selected spreadsheet. Get … Read more

Apps Script for Creating Docs and files in Drive

Create a script that will get data from a sheet, create content to add within a Doc. Make the Doc, update the sheet data with the doc details, and email out to the user from the sheet the doc location. Select a Spreadsheet sheet by Name – getSheetByName(‘data’) Get the data from the sheet Loop … Read more

How to Get Sheet Row Data with Google Apps Script

Google Apps Script allows you to create custom blocks of code that do stuff, and there is a lot of stuff you can do with it.  Container-bound Scripts – the Google file the Apps Script is attached to is known as the container.   Bound scripts behave just like Standalone scripts but they have several special functions, … Read more

Learn Google Apps Script Introduction to Google Apps Script

Introduction to Google Apps Script Macros within Google Sheets can be used to write Apps Script Code. Create a new spreadsheet and add some data into the sheet. In the top menu under extensions select Macro. Google Apps Script is created using standard JavaScript Syntax. Apply some changes and update the text color of some … Read more

Free ebook Learn Google Apps Script code with 10 Projects

Get the free ebook for learning Google Apps Script with coding examples.

Code Examples JavaScript ebook FREE ebook JavaScript Code

Code Examples JavaScript ebook How to remove and update array items const arr1 = [‘FIRST’,’Laurence’,’Svekis’,100,false]; const arr2 = [‘SECOND’,2332,true,’Hello’,’Svekis’,400,false]; const arr3 = arr1.concat(arr1,arr2); const arr4 = arr1; arr2.push(arr1); console.log(arr2); console.log(arr3); Array.prototype.push.apply(arr1,arr2); console.log(arr1); arr2.push(‘NEW ITEM’); arr1.push(‘Arr 1 New’); //delete arr1[12]; //delete arr2[7]; //arr1.length = 0; arr1.splice(12,1,’REMOVED’,’SECOND’); arr2.splice(3); console.log(arr1); console.log(arr2); console.log(arr3); console.log(arr4); Comparing Data Type and automatic … Read more

Data Automatic Type Conversion with JavaScript How it works with Code Examples to learn more about

Data Automatic Type Conversion with JavaScript How it works with Code Examples to learn more about

Immediately Invoked Function Expression JavaScript Code examples how to use IIFE

Immediately Invoked Function Expression JavaScript Code examples how to use IIFE

JavaScript Array Remove Items from an array with JavaScript Code source Code included

JavaScript Array Remove Items from an array with JavaScript Code source Code included

Math Random and Arrays Random functions with JavaScript Code How to get Random Item from Array

Math Random and Arrays Random functions with JavaScript Code How to get Random Item from Array