Google AppScript: Basic/Beginner Introduction [TUTORIAL]
This tutorial provides a very basic introduction to Google App Script. I will also list out the works that can be done with AppScript. And, I will be showing very basic Javascript code that can be run...
View ArticleGoogle AppScript: Creating File, Folder & Google Doc
This article shows how to create a new folder and file with some text inside it with Google AppScript. We will also see how to create a new Google Doc and write some text inside it through AppScript....
View ArticleGoogle AppScript: Create and Write to Google SpreadSheet
This article shows how to create a new Google Sheet and write data into it with Google AppScript. We will also be writing data into existing Google SpreadSheet. Create a new Google Sheet and write data...
View ArticleGoogle AppScript: Send Multiple Emails by reading data from Spreadsheet
This article shows how to read list of email addresses, subject and message body from Google Spreadsheet and send separate emails to all of them with Google AppScript. First, let’s see a simple example...
View ArticleGoogle AppScript: Get Latitude Longitude & Distance between Places/City
This article shows how to get latitude and longitude of a particular place or city. We read the city/place name from a Google Spreadsheet, then get the latitude and longitude of that place using Google...
View ArticleGoogle AppScript: Create Form using FormApp class, Publish Form as WebApp,...
This article shows: 1) How to create Google Form using AppScript’s “FormApp” class 2) Send Form URL to any email address using MailApp or GmailApp class 3) How to use Triggers in AppScript 4) How to...
View ArticleGoogle AppScript: Create Form using HTML, Publish Form as WebApp & Email...
This article shows: 1) How to create Google Form using standalone HTML file 2) Email form submitted data to any particular email address Create HTML file We create a Form in a new HTML File. – Go to...
View ArticleGoogle AppScript: Create Form using HTML, Publish Form as WebApp & Show data...
This article shows: 1) How to create Google Form using standalone HTML file 2) Fetch data from Google Spreadsheet and populate Select box of the HTML Form 3) Populate second select box based on the...
View Article