1.1 ๐ Emojis in Google Sheets
You can insert emojis in Google Sheets using the built-in emoji keyboard. On Windows, press Win + . and on Mac, press Control + Command + Space to open the emoji picker. These emojis can be used in cells, headers, or comments to make your data more visual.
1.2 ๐ How to Link Postal Addresses to Google Maps in Google Sheets
Use the HYPERLINK formula to link any address to Google Maps. Example:
=HYPERLINK("https://www.google.com/maps/search/" & A1, "Map Link")
This will create a clickable link to the address entered in cell A1.
1.3 ๐งช How to Email Google Sheets Automatically on a Recurring Schedule
Use Google Apps Script and set a time-based trigger:
ScriptApp.newTrigger("sendSheet").timeBased().everyDays(1).create();
Inside the sendSheet function, use MailApp.sendEmail() to email the sheet content.
1.4 ๐ Google Maps Formulas for Google Sheets
Create distance or geolocation formulas using custom Google Apps Script that leverages the Google Maps API. For example:
=GOOGLEMAPS_DISTANCE(A2, B2, "driving") to find driving distance between two locations.
1.5 ๐งช Create a BMI Calculator using Google Forms and Google Sheets
Link a Google Form that collects height (cm) and weight (kg). In the sheet, use:
=ROUND(B2 / (POWER(C2/100, 2)), 2)
This formula calculates BMI using the formula \( \text{BMI} = \frac{weight}{height^2} \).
1.6 ๐ How to Sort Google Sheets Automatically with Apps Script
Write a script like:
sheet.getRange("A2:C").sort({column: 2, ascending: true});
Attach it to a trigger or custom menu to sort your sheet automatically.
1.7 ๐ How to Make Phone Numbers Callable in Google Sheets and Docs
Use the HYPERLINK formula:
=HYPERLINK("tel:" & A1, "Call Now")
This creates a clickable link that opens the phone app when clicked on mobile or supported devices.
1.8 ๐ How to Send Personalized Text Messages from Google Sheets
Use Google Apps Script and a messaging API like Twilio. Loop through rows and send personalized messages using UrlFetchApp.fetch() inside a script connected to your sheet.
1.9 ๐งช Send WhatsApp Messages with a Google Sheets Function
Use WhatsApp's click-to-chat link format:
https://wa.me/<phone_number>
You can build this dynamically in a formula: =HYPERLINK("https://wa.me/" & A2, "Message")
1.10 ๐ Color Codes for Google Spreadsheets
Apply custom colors using HEX codes in Apps Script:
sheet.getRange("A1").setBackground("#FF5733");
You can also use conditional formatting rules with color ranges in the UI.
1.11 ๐งช How to Send WhatsApp Messages from Google Sheets using the WhatsApp API
Use the Twilio API for WhatsApp. In Apps Script:
- Setup headers and body for a POST request
- Use UrlFetchApp.fetch(endpoint, options) to send the message
1.12 ๐ How to Open a Website in New Window from Google Sheets Menu
Use Apps Script:
HtmlService.createHtmlOutput('')
This code can be run from a custom menu to open a link in a new tab.
1.13 ๐งช How to Play an MP3 File in Google Sheets
Use the HYPERLINK function:
=HYPERLINK("https://example.com/song.mp3", "Play Audio")
Or use Apps Script + HtmlService to embed an audio player.
1.14 ๐ How to Auto-Download Podcasts to Google Drive with Google Sheets
Use Apps Script to parse podcast RSS feed and download MP3 using:
DriveApp.createFile(UrlFetchApp.fetch(podcast_url))
Automate it with triggers for daily syncing.
1.15 ๐งช How to Use Conditional Formatting in Google Sheets to Highlight Information
Go to Format โ Conditional formatting. Use custom formulas like:
=A1>100 to highlight cells greater than 100 with your chosen format style.
1.16 ๐ How to Insert Images in Google Sheet Cells
Use the =IMAGE("URL") function to display images directly in cells.
Example: =IMAGE("https://example.com/photo.jpg")
1.17 ๐ How to Send SMS Messages with Google Sheets and Android Phone
Use a service like IFTTT or Pushbullet. Trigger it from Apps Script via webhook:
UrlFetchApp.fetch("https://maker.ifttt.com/trigger/...")
1.18 ๐ How to Import PayPal Transactions into Google Sheets
Option 1: Export CSV from PayPal and use IMPORTDATA
Option 2: Use PayPal API + OAuth and Apps Script to pull data programmatically.
1.19 ๐งช How to Get the Last Row in Google Sheets when using ArrayFormula
Use:
=MAX(FILTER(ROW(A:A), NOT(ISBLANK(A:A))))
Or in Apps Script: sheet.getLastRow()
1.20 ๐ How to Extract URLs from HYPERLINK Function in Google Sheets
Use REGEX formula:
=REGEXEXTRACT(FORMULATEXT(A1), "https://[^\\\"]+")
Or write a custom Apps Script parser function.
1.21 ๐งช How to Use Hyperlinks in Google Sheets
Use the formula:
=HYPERLINK("https://example.com", "Visit Site")
Also link to other tabs using #gid= format.