Learn Google Docs 2022 Google Docs Quick Start Introduction Increase Productivity

Google Docs Quick Tips https://www.udemy.com/course/gsuite-docs/?couponCode=MARCH2022 Do you want to save time and increase your productivity? Increase productivity with Google Docs Learn Google Workspace Explore what can be done with Google Docs The class is designed for beginner Docs users, such as new employees being onboarded to G Suite, or students looking to sharpen their Docs … Read more

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