Add Date into Google Doc at cursor Google Apps Script Lesson with Source Code

Add Date into Google Doc at cursor Document Apps Script Example function onOpen() {  const ui = DocumentApp.getUi();  ui.createMenu(‘Adv’)  .addItem(‘Add Date’,’adder’)  .addToUi() } function adder(){  const doc = DocumentApp.getActiveDocument();  const cur = doc.getCursor();  if(cur){    const val = new Date();    const temp = Utilities.formatDate(val,”GMT”, “yyyy-MM-dd”)    const ele = cur.insertText(temp);  } }

Learn Google Apps Script Use a Doc as a template to populate with Sheet data and email as PDF

Learn Google Apps Script Use a Doc as a template to populate with Sheet data and email as PDF This section covers how to get started with Google Apps Script and how to create common functionality with just a few lines of code.  Create files, select existing files and update them.  Use them within your … Read more

Free Google Apps Script BOOK for the next 30 days Only on Google Play eBooks store

Learn more about Google Apps Script with this complete guide ebook, contains source code and step by step how to get started coding. #free #ebook #code #appsScript #javaScript https://play.google.com/redeem?code=A6ZVSQZZJ21K2 Google Apps Script is a coding language based on JavaScript that runs in the cloud. You can do really amazing things with Apps Script, with just … Read more

Free Book on Amazon Learn Google Apps Script

Are you looking for more Google Apps Script resources to continue learning? Just released – New book on Amazon about Google Apps Script and its FREE on Amazon for the next 3 days only. Getting Started with Google Apps Script: How to create amazing time saving applications within your Google Workspace with Apps Script 25+ New YouTube Videos about Google Apps Script and how to … Read more

New Course on Udemy Query Your Google Sheet Get it Free Today JavaScript Coding Example AJAX

New Course on Udemy Query Your Google Sheet Get it Free Today JavaScript Coding Example AJAX Do you want to get data from a Google Sheet Spreadsheet to use on your web pages? Get the Free Course at https://www.udemy.com/course/sheet-data-ajax/?referralCode=A978E4C983332B038AD4 https://www.udemy.com/course/sheet-data-ajax/?referralCode=A978E4C983332B038AD4 AJAX to request Sheet data and output the sheet data into you web pages with … Read more