HTML Character Codes for Turkish Letters

example source code that displays the letters Ç, Ğ, İ, Ö, Ü, Ş using HTML character codes: <!DOCTYPE html> <html> <head> <meta charset=”UTF-8″> <title>HTML Character Codes</title> </head> <body> <h1>HTML Character Codes for Turkish Letters</h1> <p>Here are some examples of Turkish letters:</p> <ul> <li>&Ccedil; – Ç</li> <li>&Gbreve; – Ğ</li> <li>&Idot; – İ</li> <li>&Ouml; – Ö</li> <li>&Uuml; … Read more

Introduction to Gmail Productivity Guide and Helpful examples for Workspace Gmail

Introduction to Gmail What is Gmail? Gmail is a free email service provided by Google. It is one of the most popular email services in the world, with over 1.5 billion active users. Gmail offers a variety of features and benefits, including: Gmail is a great choice for anyone looking for a free, powerful, and … Read more

How to select a sheet and set it active with google apps script

To select and activate a sheet in Google Sheets using Google Apps Script, you can use the setActiveSheet() method of the SpreadsheetApp class. Here’s an example code snippet that selects the sheet named “Sheet1” and sets it as the active sheet: function selectAndActivateSheet() { var ss = SpreadsheetApp.getActiveSpreadsheet(); var sheet = ss.getSheetByName(“Sheet1”); ss.setActiveSheet(sheet); } In … Read more

IWD 2023 – Dare To Be Ottawa Laurence Svekis Power Up with Google Apps Script

Power Up with Google Apps Script Celebrate International Women’s Day with a full-day event featuring a Google speaker and Google Developer Experts on topics such as leadership, web technologies, Google Cloud Platform, Firebase, data analytics, machine learning, augmented reality and more. About this event Join us on April 23 from 11 am-2pm for an exciting … Read more

Translate with one line of code Google Apps Script

This code defines a function called translateText() that takes the text you want to translate and the target language as inputs. In this example, the text is “Hello world” and the target language is Spanish. The LanguageApp.translate() method is then

Setting Triggers in Apps Script to Automate tasks

Sure, here’s an example of how to set up a time-driven trigger in Google Apps Script to automate a function: Create triggers with code or manually in the interface function myFunction() {// Your code here} function createTrigger() {ScriptApp.newTrigger(‘myFunction’).timeBased().everyMinutes(30) // Set the frequency here.create();}This code defines a function called myFunction() that contains the code you want … Read more

Simple Google Apps Script Sheet Addon Code snippet

Google Apps Script add-ons are a type of script that extends the functionality of Google Docs, Sheets, and Forms. They are created using Google Apps Script and can be published and shared with other users. Here’s an example of a Google Apps Script add-on code: function onOpen() {var ui = SpreadsheetApp.getUi();var menu = ui.createMenu(‘My Custom … Read more

Common apps script functions in Sheets

Google Sheets provides a wide range of functions to help you work with your data, but you can also create custom functions using Google Apps Script. Here are some of the most common custom Apps Script functions used in Sheets: These are just a few examples of the many custom functions you can create using … Read more

Custom Menu UI with Apps Script

To add a custom menu UI in Google Apps Script, you can use the addMenu(name, subMenus) method of the Ui class. Here is an example of how to add a custom menu UI in Google Sheets: function onOpen() { var ui = SpreadsheetApp.getUi(); var menu = ui.createMenu(‘My Custom Menu’); menu.addItem(‘Menu Item 1’, ‘menuItem1’); menu.addItem(‘Menu Item … Read more

Benefits of Google Apps Script

Google Apps Script is a scripting language used for automating tasks and extending functionality in various Google services such as Google Sheets, Google Docs, Gmail, and Google Drive. Here are some benefits of using Google Apps Script: Automation: With Google Apps Script, you can automate repetitive tasks such as data entry, report generation, and email … Read more