├── Chapter1 ├── Automatically create Google Calendar events from Google Sheets data ├── Automatically send emails to new form respondents ├── Create a web app to collect user feedback ├── Example of Bound Script add menu Item ├── Example of Standalone Script Check emails ├── Example of error handling function ├── Hello World ├── Sending Email Notifications from Google Sheets └── Write To a Sheet ├── Chapter10 ├── Create weekly report ├── Data report to doc ├── Fetch JSON data populate Sheet ├── Filtering Data in Apps Script ├── JSON data for sheets ├── Summarize Data ├── Writing Data to a Spreadsheet ├── calculateAverageRatings ├── complexSheetDataToJson ├── create text file with JSON data ├── createWeeklyTrigger ├── customizedSheetDataToJson ├── draw chart in web app ├── exportSheetToPDF ├── fetchAndParseRSSFeed ├── fetchDataFromAPI ├── generateResponseSummary ├── line chart ├── readSheetData ├── save CSV to drive ├── sendReportByEmail ├── sendSheetAsEmailAttachment ├── sendSheetDataAsJson ├── sheet data chart └── sheetDataToJson ├── Chapter11 ├── Document maker ├── Generating and Sending Custom Invites ├── Google Calendar ├── assign tasks └── sheets assign tasks ├── Chapter13 ├── Generate and send invoice ├── Generating and Sending Financial Reports ├── Monthly Expense Report ├── Streamlining Employee Onboarding Process ├── Synchronizing Calendars for Room Booking System ├── distribute docs to assigned users └── syncBookingsToCalendar ├── Chapter14 ├── ProcessResponses ├── optimizeDataProcessing ├── scheduleMeetingsFromSheet └── trackUsage ├── Chapter2 ├── Debug └── error handling ├── Chapter3 ├── A custom function that converts temperatures from Celsius to Fahrenheit ├── Accessing a specific spreadsheet and writing data to a cell ├── Auto Fill data ├── Automatically updating inventory levels ├── Automating Invoice Generation ├── Building Custom Inventory Tracking Systems ├── Conditional Formatting Automation ├── Creating Custom Data Validation Functions ├── Creating the Invoice Template ├── Developing Dynamic and Interactive Reports ├── Generating a report with a button click: ├── Using sheet data for cleint info for invoice ├── add a new sheet ├── check and mark invalid emails ├── clear range ├── copy range of data ├── create Sheets PDF invoice ├── create backup file ├── custom function highest sales ├── delete a sheet ├── remove duplicates ├── rename sheet with testing function ├── sort data └── udpate range ├── Chapter4 ├── Basic Text Parsing and Manipulation Extracting Specific Text Segments ├── Batch update format ├── Cereate new table ├── Highlight existing text ├── Mail Merge Docs ├── Mail merge with Sheets Data ├── Sheet Data report ├── Sheet Data to Docs sheet report ├── access doc ├── analyze text data ├── apply style to doc ├── create doc from template ├── create list items ├── create new doc ├── creating headings ├── email doc as PDF ├── format document H1 ├── format for printing ├── format text in doc ├── generate report ├── generate report from Sheets data ├── generate table data ├── headers in table doc ├── insert image ├── insert on condition ├── modify doc ├── pivot table in sheets ├── read doc contents ├── replace text in doc ├── resize image ├── update existing doc ├── update list items └── update table ├── Chapter5 ├── Accessing Form Responses ├── Advanced form creation from sheets ├── Automating Feedback and Follow-up Processes ├── Dynamic Form from Sheet data ├── Set up Autograding ├── Setting Up Simple Triggers ├── Trigger to run function on submit ├── Updating Google Sheets Based on Form Responses ├── Writing Form Responses to Google Sheets ├── create a form ├── create form from sheet data ├── generate Quiz Feedback Form ├── get form responses ├── latest response ├── process response with trigger ├── responses to sheet ├── send Confirmation Emai ├── send email response Autoresponder ├── send quiz feedback ├── update form └── update form options ├── Chapter6 ├── Add chart from Sheets to Slides ├── Apply theme ├── Create doc and share with anyone ├── Creating Slides Dynamically ├── Insert Image ├── access gmail messages ├── create Slides ├── customize slide layout ├── generate from tempalte ├── insert dynamic content ├── insert shape └── insert text ├── Chapter7 ├── Create from template and share ├── Creating Files and Folders ├── Move file to folder ├── back up of folders ├── file metadata ├── organize files by Date ├── search fiels by name ├── update metadata └── update user permissions ├── Chapter8 ├── Check for email by subject in thread ├── Parsing Email Messages ├── Sending Personalized Emails ├── Triggering Actions Based on Email Content ├── applyLabelToMatchingEmails ├── create and add label if needed ├── create label and filter messages ├── createNewLabel ├── deleteLabel ├── extractUrlsFromBody └── send Email ├── Chapter9 ├── Custom Dialogs and Sidebars ├── Docs Custom UI menu ├── Example with Google Calendar ├── New Task List ├── UI menu example ├── UI menu run report ├── UrlFetchApp example ├── add task to list ├── checkDeadlinesAndSendEmails ├── createCalendarEvents ├── createCustomEventReminder ├── custom function in sheets ├── custom menu in Docs ├── custom menus UI ├── doGet Deploy Web App ├── extractDataToSheet from Doc ├── formatCells ├── send email from sheet data ├── sendEmailNotifications └── sendEmails ├── Data JSON Data └── Examples ├── Append a Row to a Spreadsheet ├── Automate Document Creation and Sharing ├── Batch Update Spreadsheet Cells ├── Convert Spreadsheet Data to JSON ├── Create a Google Doc ├── Create a Menu in Google Sheets ├── Fetch Data from an API ├── Generate PDFs from Google Docs Template ├── Generate a Spreadsheet Report from Form Responses ├── Log a Custom Message ├── Monitor Sheet Changes and Send Notifications ├── Read Data from a Spreadsheet ├── Schedule Email Reminders from Spreadsheet Data ├── Send an Email ├── Update Spreadsheet Formatting └── Write Data to a Spreadsheet /Chapter1/Automatically create Google Calendar events from Google Sheets data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Automatically create Google Calendar events from Google Sheets data -------------------------------------------------------------------------------- /Chapter1/Automatically send emails to new form respondents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Automatically send emails to new form respondents -------------------------------------------------------------------------------- /Chapter1/Create a web app to collect user feedback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Create a web app to collect user feedback -------------------------------------------------------------------------------- /Chapter1/Example of Bound Script add menu Item: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Example of Bound Script add menu Item -------------------------------------------------------------------------------- /Chapter1/Example of Standalone Script Check emails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Example of Standalone Script Check emails -------------------------------------------------------------------------------- /Chapter1/Example of error handling function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Example of error handling function -------------------------------------------------------------------------------- /Chapter1/Hello World: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Hello World -------------------------------------------------------------------------------- /Chapter1/Sending Email Notifications from Google Sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Sending Email Notifications from Google Sheets -------------------------------------------------------------------------------- /Chapter1/Write To a Sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter1/Write To a Sheet -------------------------------------------------------------------------------- /Chapter10/Create weekly report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Create weekly report -------------------------------------------------------------------------------- /Chapter10/Data report to doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Data report to doc -------------------------------------------------------------------------------- /Chapter10/Fetch JSON data populate Sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Fetch JSON data populate Sheet -------------------------------------------------------------------------------- /Chapter10/Filtering Data in Apps Script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Filtering Data in Apps Script -------------------------------------------------------------------------------- /Chapter10/JSON data for sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/JSON data for sheets -------------------------------------------------------------------------------- /Chapter10/Summarize Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Summarize Data -------------------------------------------------------------------------------- /Chapter10/Writing Data to a Spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/Writing Data to a Spreadsheet -------------------------------------------------------------------------------- /Chapter10/calculateAverageRatings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/calculateAverageRatings -------------------------------------------------------------------------------- /Chapter10/complexSheetDataToJson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/complexSheetDataToJson -------------------------------------------------------------------------------- /Chapter10/create text file with JSON data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/create text file with JSON data -------------------------------------------------------------------------------- /Chapter10/createWeeklyTrigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/createWeeklyTrigger -------------------------------------------------------------------------------- /Chapter10/customizedSheetDataToJson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/customizedSheetDataToJson -------------------------------------------------------------------------------- /Chapter10/draw chart in web app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/draw chart in web app -------------------------------------------------------------------------------- /Chapter10/exportSheetToPDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/exportSheetToPDF -------------------------------------------------------------------------------- /Chapter10/fetchAndParseRSSFeed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/fetchAndParseRSSFeed -------------------------------------------------------------------------------- /Chapter10/fetchDataFromAPI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/fetchDataFromAPI -------------------------------------------------------------------------------- /Chapter10/generateResponseSummary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/generateResponseSummary -------------------------------------------------------------------------------- /Chapter10/line chart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/line chart -------------------------------------------------------------------------------- /Chapter10/readSheetData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/readSheetData -------------------------------------------------------------------------------- /Chapter10/save CSV to drive: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/save CSV to drive -------------------------------------------------------------------------------- /Chapter10/sendReportByEmail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/sendReportByEmail -------------------------------------------------------------------------------- /Chapter10/sendSheetAsEmailAttachment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/sendSheetAsEmailAttachment -------------------------------------------------------------------------------- /Chapter10/sendSheetDataAsJson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/sendSheetDataAsJson -------------------------------------------------------------------------------- /Chapter10/sheet data chart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/sheet data chart -------------------------------------------------------------------------------- /Chapter10/sheetDataToJson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter10/sheetDataToJson -------------------------------------------------------------------------------- /Chapter11/Document maker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter11/Document maker -------------------------------------------------------------------------------- /Chapter11/Generating and Sending Custom Invites: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter11/Generating and Sending Custom Invites -------------------------------------------------------------------------------- /Chapter11/Google Calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter11/Google Calendar -------------------------------------------------------------------------------- /Chapter11/assign tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter11/assign tasks -------------------------------------------------------------------------------- /Chapter11/sheets assign tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter11/sheets assign tasks -------------------------------------------------------------------------------- /Chapter13/Generate and send invoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/Generate and send invoice -------------------------------------------------------------------------------- /Chapter13/Generating and Sending Financial Reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/Generating and Sending Financial Reports -------------------------------------------------------------------------------- /Chapter13/Monthly Expense Report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/Monthly Expense Report -------------------------------------------------------------------------------- /Chapter13/Streamlining Employee Onboarding Process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/Streamlining Employee Onboarding Process -------------------------------------------------------------------------------- /Chapter13/Synchronizing Calendars for Room Booking System: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/Synchronizing Calendars for Room Booking System -------------------------------------------------------------------------------- /Chapter13/distribute docs to assigned users: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/distribute docs to assigned users -------------------------------------------------------------------------------- /Chapter13/syncBookingsToCalendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter13/syncBookingsToCalendar -------------------------------------------------------------------------------- /Chapter14/ProcessResponses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter14/ProcessResponses -------------------------------------------------------------------------------- /Chapter14/optimizeDataProcessing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter14/optimizeDataProcessing -------------------------------------------------------------------------------- /Chapter14/scheduleMeetingsFromSheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter14/scheduleMeetingsFromSheet -------------------------------------------------------------------------------- /Chapter14/trackUsage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter14/trackUsage -------------------------------------------------------------------------------- /Chapter2/Debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter2/Debug -------------------------------------------------------------------------------- /Chapter2/error handling: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter2/error handling -------------------------------------------------------------------------------- /Chapter3/A custom function that converts temperatures from Celsius to Fahrenheit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/A custom function that converts temperatures from Celsius to Fahrenheit -------------------------------------------------------------------------------- /Chapter3/Accessing a specific spreadsheet and writing data to a cell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Accessing a specific spreadsheet and writing data to a cell -------------------------------------------------------------------------------- /Chapter3/Auto Fill data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Auto Fill data -------------------------------------------------------------------------------- /Chapter3/Automatically updating inventory levels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Automatically updating inventory levels -------------------------------------------------------------------------------- /Chapter3/Automating Invoice Generation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Automating Invoice Generation -------------------------------------------------------------------------------- /Chapter3/Building Custom Inventory Tracking Systems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Building Custom Inventory Tracking Systems -------------------------------------------------------------------------------- /Chapter3/Conditional Formatting Automation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Conditional Formatting Automation -------------------------------------------------------------------------------- /Chapter3/Creating Custom Data Validation Functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Creating Custom Data Validation Functions -------------------------------------------------------------------------------- /Chapter3/Creating the Invoice Template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Creating the Invoice Template -------------------------------------------------------------------------------- /Chapter3/Developing Dynamic and Interactive Reports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Developing Dynamic and Interactive Reports -------------------------------------------------------------------------------- /Chapter3/Generating a report with a button click:: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Generating a report with a button click: -------------------------------------------------------------------------------- /Chapter3/Using sheet data for cleint info for invoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/Using sheet data for cleint info for invoice -------------------------------------------------------------------------------- /Chapter3/add a new sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/add a new sheet -------------------------------------------------------------------------------- /Chapter3/check and mark invalid emails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/check and mark invalid emails -------------------------------------------------------------------------------- /Chapter3/clear range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/clear range -------------------------------------------------------------------------------- /Chapter3/copy range of data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/copy range of data -------------------------------------------------------------------------------- /Chapter3/create Sheets PDF invoice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/create Sheets PDF invoice -------------------------------------------------------------------------------- /Chapter3/create backup file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/create backup file -------------------------------------------------------------------------------- /Chapter3/custom function highest sales: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/custom function highest sales -------------------------------------------------------------------------------- /Chapter3/delete a sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/delete a sheet -------------------------------------------------------------------------------- /Chapter3/remove duplicates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/remove duplicates -------------------------------------------------------------------------------- /Chapter3/rename sheet with testing function: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/rename sheet with testing function -------------------------------------------------------------------------------- /Chapter3/sort data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/sort data -------------------------------------------------------------------------------- /Chapter3/udpate range: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter3/udpate range -------------------------------------------------------------------------------- /Chapter4/Basic Text Parsing and Manipulation Extracting Specific Text Segments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Basic Text Parsing and Manipulation Extracting Specific Text Segments -------------------------------------------------------------------------------- /Chapter4/Batch update format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Batch update format -------------------------------------------------------------------------------- /Chapter4/Cereate new table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Cereate new table -------------------------------------------------------------------------------- /Chapter4/Highlight existing text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Highlight existing text -------------------------------------------------------------------------------- /Chapter4/Mail Merge Docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Mail Merge Docs -------------------------------------------------------------------------------- /Chapter4/Mail merge with Sheets Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Mail merge with Sheets Data -------------------------------------------------------------------------------- /Chapter4/Sheet Data report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Sheet Data report -------------------------------------------------------------------------------- /Chapter4/Sheet Data to Docs sheet report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/Sheet Data to Docs sheet report -------------------------------------------------------------------------------- /Chapter4/access doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/access doc -------------------------------------------------------------------------------- /Chapter4/analyze text data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/analyze text data -------------------------------------------------------------------------------- /Chapter4/apply style to doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/apply style to doc -------------------------------------------------------------------------------- /Chapter4/create doc from template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/create doc from template -------------------------------------------------------------------------------- /Chapter4/create list items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/create list items -------------------------------------------------------------------------------- /Chapter4/create new doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/create new doc -------------------------------------------------------------------------------- /Chapter4/creating headings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/creating headings -------------------------------------------------------------------------------- /Chapter4/email doc as PDF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/email doc as PDF -------------------------------------------------------------------------------- /Chapter4/format document H1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/format document H1 -------------------------------------------------------------------------------- /Chapter4/format for printing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/format for printing -------------------------------------------------------------------------------- /Chapter4/format text in doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/format text in doc -------------------------------------------------------------------------------- /Chapter4/generate report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/generate report -------------------------------------------------------------------------------- /Chapter4/generate report from Sheets data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/generate report from Sheets data -------------------------------------------------------------------------------- /Chapter4/generate table data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/generate table data -------------------------------------------------------------------------------- /Chapter4/headers in table doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/headers in table doc -------------------------------------------------------------------------------- /Chapter4/insert image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/insert image -------------------------------------------------------------------------------- /Chapter4/insert on condition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/insert on condition -------------------------------------------------------------------------------- /Chapter4/modify doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/modify doc -------------------------------------------------------------------------------- /Chapter4/pivot table in sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/pivot table in sheets -------------------------------------------------------------------------------- /Chapter4/read doc contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/read doc contents -------------------------------------------------------------------------------- /Chapter4/replace text in doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/replace text in doc -------------------------------------------------------------------------------- /Chapter4/resize image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/resize image -------------------------------------------------------------------------------- /Chapter4/update existing doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/update existing doc -------------------------------------------------------------------------------- /Chapter4/update list items: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/update list items -------------------------------------------------------------------------------- /Chapter4/update table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter4/update table -------------------------------------------------------------------------------- /Chapter5/Accessing Form Responses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Accessing Form Responses -------------------------------------------------------------------------------- /Chapter5/Advanced form creation from sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Advanced form creation from sheets -------------------------------------------------------------------------------- /Chapter5/Automating Feedback and Follow-up Processes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Automating Feedback and Follow-up Processes -------------------------------------------------------------------------------- /Chapter5/Dynamic Form from Sheet data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Dynamic Form from Sheet data -------------------------------------------------------------------------------- /Chapter5/Set up Autograding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Set up Autograding -------------------------------------------------------------------------------- /Chapter5/Setting Up Simple Triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Setting Up Simple Triggers -------------------------------------------------------------------------------- /Chapter5/Trigger to run function on submit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Trigger to run function on submit -------------------------------------------------------------------------------- /Chapter5/Updating Google Sheets Based on Form Responses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Updating Google Sheets Based on Form Responses -------------------------------------------------------------------------------- /Chapter5/Writing Form Responses to Google Sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/Writing Form Responses to Google Sheets -------------------------------------------------------------------------------- /Chapter5/create a form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/create a form -------------------------------------------------------------------------------- /Chapter5/create form from sheet data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/create form from sheet data -------------------------------------------------------------------------------- /Chapter5/generate Quiz Feedback Form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/generate Quiz Feedback Form -------------------------------------------------------------------------------- /Chapter5/get form responses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/get form responses -------------------------------------------------------------------------------- /Chapter5/latest response: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/latest response -------------------------------------------------------------------------------- /Chapter5/process response with trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/process response with trigger -------------------------------------------------------------------------------- /Chapter5/responses to sheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/responses to sheet -------------------------------------------------------------------------------- /Chapter5/send Confirmation Emai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/send Confirmation Emai -------------------------------------------------------------------------------- /Chapter5/send email response Autoresponder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/send email response Autoresponder -------------------------------------------------------------------------------- /Chapter5/send quiz feedback: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/send quiz feedback -------------------------------------------------------------------------------- /Chapter5/update form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/update form -------------------------------------------------------------------------------- /Chapter5/update form options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter5/update form options -------------------------------------------------------------------------------- /Chapter6/Add chart from Sheets to Slides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/Add chart from Sheets to Slides -------------------------------------------------------------------------------- /Chapter6/Apply theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/Apply theme -------------------------------------------------------------------------------- /Chapter6/Create doc and share with anyone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/Create doc and share with anyone -------------------------------------------------------------------------------- /Chapter6/Creating Slides Dynamically: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/Creating Slides Dynamically -------------------------------------------------------------------------------- /Chapter6/Insert Image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/Insert Image -------------------------------------------------------------------------------- /Chapter6/access gmail messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/access gmail messages -------------------------------------------------------------------------------- /Chapter6/create Slides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/create Slides -------------------------------------------------------------------------------- /Chapter6/customize slide layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/customize slide layout -------------------------------------------------------------------------------- /Chapter6/generate from tempalte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/generate from tempalte -------------------------------------------------------------------------------- /Chapter6/insert dynamic content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/insert dynamic content -------------------------------------------------------------------------------- /Chapter6/insert shape: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/insert shape -------------------------------------------------------------------------------- /Chapter6/insert text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter6/insert text -------------------------------------------------------------------------------- /Chapter7/Create from template and share: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/Create from template and share -------------------------------------------------------------------------------- /Chapter7/Creating Files and Folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/Creating Files and Folders -------------------------------------------------------------------------------- /Chapter7/Move file to folder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/Move file to folder -------------------------------------------------------------------------------- /Chapter7/back up of folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/back up of folders -------------------------------------------------------------------------------- /Chapter7/file metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/file metadata -------------------------------------------------------------------------------- /Chapter7/organize files by Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/organize files by Date -------------------------------------------------------------------------------- /Chapter7/search fiels by name: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/search fiels by name -------------------------------------------------------------------------------- /Chapter7/update metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/update metadata -------------------------------------------------------------------------------- /Chapter7/update user permissions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter7/update user permissions -------------------------------------------------------------------------------- /Chapter8/Check for email by subject in thread: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/Check for email by subject in thread -------------------------------------------------------------------------------- /Chapter8/Parsing Email Messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/Parsing Email Messages -------------------------------------------------------------------------------- /Chapter8/Sending Personalized Emails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/Sending Personalized Emails -------------------------------------------------------------------------------- /Chapter8/Triggering Actions Based on Email Content: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/Triggering Actions Based on Email Content -------------------------------------------------------------------------------- /Chapter8/applyLabelToMatchingEmails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/applyLabelToMatchingEmails -------------------------------------------------------------------------------- /Chapter8/create and add label if needed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/create and add label if needed -------------------------------------------------------------------------------- /Chapter8/create label and filter messages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/create label and filter messages -------------------------------------------------------------------------------- /Chapter8/createNewLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/createNewLabel -------------------------------------------------------------------------------- /Chapter8/deleteLabel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/deleteLabel -------------------------------------------------------------------------------- /Chapter8/extractUrlsFromBody: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/extractUrlsFromBody -------------------------------------------------------------------------------- /Chapter8/send Email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter8/send Email -------------------------------------------------------------------------------- /Chapter9/Custom Dialogs and Sidebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/Custom Dialogs and Sidebars -------------------------------------------------------------------------------- /Chapter9/Docs Custom UI menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/Docs Custom UI menu -------------------------------------------------------------------------------- /Chapter9/Example with Google Calendar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/Example with Google Calendar -------------------------------------------------------------------------------- /Chapter9/New Task List: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/New Task List -------------------------------------------------------------------------------- /Chapter9/UI menu example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/UI menu example -------------------------------------------------------------------------------- /Chapter9/UI menu run report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/UI menu run report -------------------------------------------------------------------------------- /Chapter9/UrlFetchApp example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/UrlFetchApp example -------------------------------------------------------------------------------- /Chapter9/add task to list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/add task to list -------------------------------------------------------------------------------- /Chapter9/checkDeadlinesAndSendEmails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/checkDeadlinesAndSendEmails -------------------------------------------------------------------------------- /Chapter9/createCalendarEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/createCalendarEvents -------------------------------------------------------------------------------- /Chapter9/createCustomEventReminder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/createCustomEventReminder -------------------------------------------------------------------------------- /Chapter9/custom function in sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/custom function in sheets -------------------------------------------------------------------------------- /Chapter9/custom menu in Docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/custom menu in Docs -------------------------------------------------------------------------------- /Chapter9/custom menus UI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/custom menus UI -------------------------------------------------------------------------------- /Chapter9/doGet Deploy Web App: -------------------------------------------------------------------------------- 1 | function doGet(e) { 2 | return HtmlService.createHtmlOutput('
Hello, world!
'); 3 | } 4 | -------------------------------------------------------------------------------- /Chapter9/extractDataToSheet from Doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/extractDataToSheet from Doc -------------------------------------------------------------------------------- /Chapter9/formatCells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/formatCells -------------------------------------------------------------------------------- /Chapter9/send email from sheet data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/send email from sheet data -------------------------------------------------------------------------------- /Chapter9/sendEmailNotifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/sendEmailNotifications -------------------------------------------------------------------------------- /Chapter9/sendEmails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Chapter9/sendEmails -------------------------------------------------------------------------------- /Data JSON Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Data JSON Data -------------------------------------------------------------------------------- /Examples/Append a Row to a Spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Append a Row to a Spreadsheet -------------------------------------------------------------------------------- /Examples/Automate Document Creation and Sharing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Automate Document Creation and Sharing -------------------------------------------------------------------------------- /Examples/Batch Update Spreadsheet Cells: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Batch Update Spreadsheet Cells -------------------------------------------------------------------------------- /Examples/Convert Spreadsheet Data to JSON: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Convert Spreadsheet Data to JSON -------------------------------------------------------------------------------- /Examples/Create a Google Doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Create a Google Doc -------------------------------------------------------------------------------- /Examples/Create a Menu in Google Sheets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Create a Menu in Google Sheets -------------------------------------------------------------------------------- /Examples/Fetch Data from an API: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Fetch Data from an API -------------------------------------------------------------------------------- /Examples/Generate PDFs from Google Docs Template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Generate PDFs from Google Docs Template -------------------------------------------------------------------------------- /Examples/Generate a Spreadsheet Report from Form Responses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Generate a Spreadsheet Report from Form Responses -------------------------------------------------------------------------------- /Examples/Log a Custom Message: -------------------------------------------------------------------------------- 1 | function logMessage() { 2 | Logger.log('Hello, Google Apps Script!'); 3 | } 4 | -------------------------------------------------------------------------------- /Examples/Monitor Sheet Changes and Send Notifications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Monitor Sheet Changes and Send Notifications -------------------------------------------------------------------------------- /Examples/Read Data from a Spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Read Data from a Spreadsheet -------------------------------------------------------------------------------- /Examples/Schedule Email Reminders from Spreadsheet Data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Schedule Email Reminders from Spreadsheet Data -------------------------------------------------------------------------------- /Examples/Send an Email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Send an Email -------------------------------------------------------------------------------- /Examples/Update Spreadsheet Formatting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Update Spreadsheet Formatting -------------------------------------------------------------------------------- /Examples/Write Data to a Spreadsheet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsvekis/Coding-with-Google-Apps-Script/HEAD/Examples/Write Data to a Spreadsheet --------------------------------------------------------------------------------