4 scripts to make Google Sheets stronger

Google Sheets or Google Sheets is one of the most powerful free tools, allowing you to track, analyze or take notes of everything you can imagine. Not stopping there, you can enhance its capabilities with Googe Scripts (Google Script).

Download Google Sheets for iOS

Download Google Sheets for Android

Google Scrips sounds complicated and confusing. You may think it involves advanced programming knowledge but it really isn't. This article will introduce you to four simple scripts that help you customize functions, automatically create charts based on any data, customize your menu in Google Sheets, and even automate it. monthly email delivery.

1. Create your own custom functions

Creating custom functionality is one of the easiest ways to create a Google Scripts that can enhance your Google Sheets experience. Google Sheets has provided a long list of available functions. You can view the most popular ones by clicking on the function icon on the menu.

4 scripts to make Google Sheets stronger

Then click on More functions ... to open a list of algorithms, finances, techniques and more. However, Google Scripts gives you the flexibility to create your own personal formulas.
To create your first custom function, you'll first need to open the script editor by clicking Tools> Script Editor.

4 scripts to make Google Sheets stronger

You should see a window appear similar or similar to below.

4 scripts to make Google Sheets stronger

What you need to do is replace what is in this window with your own custom functionality. The function name is the same as the one you will start typing into a cell in Google Sheets after the "=" symbol to call your formula. A function to convert Celsius to Fahrenheit would look like this:

function CSTOFH (input) {
return input * 1.8 + 32;
}

Paste the above functions into the code window and then select File> Save , name the project "CelsiusConverter" and click OK.

That is all you have to do. You start using your new function by typing "=" followed by your function, with the number entered to convert:

4 scripts to make Google Sheets stronger

Hit enter and you will get results.

4 scripts to make Google Sheets stronger

2. Automatically create charts

You can have a new spreadsheet every month with new data and you want to automatically create a new chart without having to recreate it every month. You can do this by creating a function that will create a new chart for you based on the data in the current workbook you have opened.

Suppose you are a teacher and at the end of the year you have a spreadsheet for each student with a list of monthly test scores:

4 scripts to make Google Sheets stronger

What you want to do is run a single function on this table that will automatically generate a chart in seconds. The script will look like this:

function GradeChart () {
var spreadsheet = SpreadsheetApp.getActiveSpreadsheet ();
var sheet = spreadsheet.getSheets () [0];

var gradechart = sheet.newChart ()
.setChartType (Charts.ChartType.LINE)
.addRange (sheet.getRange ('A1: B11'))
.setPosition (5, 5, 0, 0)
.build ();

sheet.insertChart (gradechart);
}

All you have to do is open each student's spreadsheet and click the run icon in the menu in Google Scripts to automatically create the chart.

4 scripts to make Google Sheets stronger

Whenever you click the run icon, it will run the script that you created on the "active" spreadsheet (a workbook you have opened in your current browser tab).

4 scripts to make Google Sheets stronger

For reports that you have to create regularly, like weekly or monthly, this type of auto-charting function can really save you a lot of time, because you don't have to recreate from scratch. When you want to import chart data on a new worksheet.

3. Create custom Menu

If you don't want a script to automatically generate charts and want that functionality right at your fingertips on the menu system in Google Sheets, you can make that happen.

To create a custom menu, you need to give the spreadsheet a new menu item every time it opens. You can do this by creating an onOpen () function in the Script Editor window above the Gradechart function you just created.

function onOpen () {
var spreadsheet = SpreadsheetApp.getActive ();
var menuItems = [
{name: 'Create Grade Chart ...', functionName: 'GradeChart'}
];
spreadsheet.addMenu ('Charts', menuItems);
}

Save the code and then reload your spreadsheet. You will discover that a new menu item appears with the name you specify it in your script. Click on the menu and you will see the menu item for that function.

4 scripts to make Google Sheets stronger

Click the menu item and it will run the same functions as it did when you click the run icon from within the Google Scripts editor.

4. Send the report automatically

The last script is a script that will email from within Google Sheets. This can be useful if you are managing a large group of people and you have to send multiple emails on the same subject. You may have performed a performance review with each team member and have recorded your review comments for each person in Google Spreadsheets. It is very convenient and time-saving to just run a single script and the reviews will be automatically sent to 50 or 60 people at the same time without having to create each email and send it individually. That is the power of Google Scripting.

Similar to the way you created the scripts above in this article, you will create a script for automatic report submission by going to the script editor and creating a function called sendEmails () , as follows: :

function sendEmails () {
var sheet = SpreadsheetApp.getActiveSheet ();
var startRow = 2; // First row of data to process
var numRows = 7; // Number of rows to process
var dataRange = sheet.getRange (startRow, 1, numRows, 3)
var data = dataRange.getValues ​​();
for (i in data) {
var row = data [i];
var emailAddress = row [1]; // Second column
var message = row [2]; // Third column
var subject = "My review notes";
MailApp.sendEmail (emailAddress, subject, message);
}
}

So, suppose you have the worksheet organized as shown here.

4 scripts to make Google Sheets stronger

The above script will do everything through each row in the spreadsheet and send an email to the address in the second column with the message you entered in the third column.

The sendEmail function in Google Scripts is one of the most powerful functions in Google Scripts because it opens up a world of email automation that you have never considered before.

If in reality you have someone else responsible for importing data into your Google spreadsheet, and if you automatically deliver emails based on the entered data, you can do something like send a monthly report to Boss, that never really needs to open his customer email. The script can automatically do all the work for you.

All these features of Google Scripts will show you that with just a few simple lines of code, Google Scripts has the right to automate part or all of Google Sheets. These automation can be set to run on schedule or run whenever you want to enable them. Either way, they provide you with a way to automate a lot of work without spending a lot of effort and time.

Leave a Comment

How to copy or duplicate an entire spreadsheet in Google Sheets

How to copy or duplicate an entire spreadsheet in Google Sheets

Basically, moving or copying the entire contents of a Google Sheets spreadsheet isn't much different from what you might be familiar with when working with Microsoft Excel.

5 Best Google Sheets Add-ons to Make Data Analysis Easier

5 Best Google Sheets Add-ons to Make Data Analysis Easier

Google Sheets is a powerful tool for data analysis, but sometimes you need more power. There are plenty of add-ons that can speed up your spreadsheets and take your data processing to the next level.

How to Add Gemini to Improve Your Google Sheets Experience

How to Add Gemini to Improve Your Google Sheets Experience

Tired of spending hours creating spreadsheets and entering data manually? You'll be glad to know that you can use Gemini's creation features with Google Sheets to automate tasks and improve your overall experience.

How to Export Airtable to Excel and Google Sheets

How to Export Airtable to Excel and Google Sheets

Airtable lets you create and share relational databases easily. Export your Airtable data to Google Sheets or Excel to enjoy the benefits of advanced charts and data visualization.

How to Create a Monthly Spending Tracker on Google Sheets

How to Create a Monthly Spending Tracker on Google Sheets

Finances can be a daunting task, but thanks to Google Sheets, keeping track of your spending doesn't have to be a hassle. You don't have to invest in another software either.

How to Track Registrations Using Google Sheets

How to Track Registrations Using Google Sheets

Google Sheets is the only tool you need to record and manage these subscriptions.

Set location in Google Sheets

Set location in Google Sheets

Google Sheets has location settings that are easy to use and useful. Here's what you need to know about using settings in Google Sheets.

Why are so many people stopping using Google Sheets and going back to Excel?

Why are so many people stopping using Google Sheets and going back to Excel?

For a while, Google Sheets lured people away from Excel. But many people came back after realizing that Google Sheets is far from beating Excel.

Is Gemini in Google Sheets as advertised?

Is Gemini in Google Sheets as advertised?

Since Gemini in Google Sheets provides textboxes, you can ask it to do anything. But what can Gemini in Google Sheets actually do and where does it fall short?

How to use the FILTER function in Google Sheets

How to use the FILTER function in Google Sheets

How to use the FILTER function in Google Sheets, The FILTER function in Google Sheets allows you to filter data and return rows that meet specific criteria. Here's how to use it

How to turn a Google Sheets spreadsheet into a colorful rainbow

How to turn a Google Sheets spreadsheet into a colorful rainbow

To celebrate the International Pride Month, Google allows users to turn a dry, monotonous spreadsheet into a colorful rainbow extremely quickly.

Instructions to insert Checkbox on Google Sheets

Instructions to insert Checkbox on Google Sheets

The following article will show you how to insert checkboxes into a cell in Google Sheets (Google Sheets).

Common keyboard shortcuts for Google Sheets

Common keyboard shortcuts for Google Sheets

Google Sheets is an online spreadsheet creator that allows users to create and edit spreadsheet files quickly and conveniently.

How to open Excel file on iPhone and iPad?

How to open Excel file on iPhone and iPad?

Looking for an application that allows you to view and edit Excel sheets and files on your iPhone and iPad? So do not miss the following tools.

Solving Microsoft Teams Wiki in Teams Error Loading

Solving Microsoft Teams Wiki in Teams Error Loading

Tired of the frustrating Microsoft Teams "Wiki in Teams" error loading? Get step-by-step fixes for Wiki not loading in Teams, clear cache, reset settings, and more. Resolve it fast with our expert guide.

How to Keep Microsoft Teams Active and Available All Day

How to Keep Microsoft Teams Active and Available All Day

Master how to keep Microsoft Teams active and "Available" all day. Proven tips, tools, and settings to avoid "Away" status, boost productivity, and never miss a beat in your workday.

How to Download Microsoft Teams for Windows 11 in 2026

How to Download Microsoft Teams for Windows 11 in 2026

Discover how to download Microsoft Teams for Windows 11 in 2026 with our ultimate guide. Official methods, troubleshooting, and pro tips for seamless installation and instant collaboration.

How to Fix Microsoft Teams Groups Visibility Error

How to Fix Microsoft Teams Groups Visibility Error

Tired of missing groups in Microsoft Teams? Discover how to fix the "Groups" Visibility Error with simple, up-to-date steps. Restore your teams visibility fast and frustration-free.

The Best Vitamins and Minerals for Your Eyes

The Best Vitamins and Minerals for Your Eyes

The eyes are the windows to the soul. So take good care of them with the following eye vitamins.

Solving Microsoft Teams For School Login Error

Solving Microsoft Teams For School Login Error

Stuck with Microsoft Teams "For School" login error? Follow our expert, step-by-step guide to solve it fast – no tech skills needed. Get back to classes without frustration!

How to Fix Microsoft Teams Media Error During Playback

How to Fix Microsoft Teams Media Error During Playback

Struggling with Microsoft Teams media error during playback? Discover step-by-step fixes for smooth video and audio in meetings. Updated with the latest troubleshooting tips for seamless collaboration.

Troubleshooting Microsoft Teams Where is Teams Folder Search

Troubleshooting Microsoft Teams Where is Teams Folder Search

Frustrated with Troubleshooting Microsoft Teams "Where is Teams" Folder Search issues? Follow our expert, step-by-step guide to locate hidden folders, fix search glitches, and restore smooth collaboration in the latest Teams updates. Quick fixes that work!

How to Fix Microsoft Teams Error AADSTS70008: Security Token Expired

How to Fix Microsoft Teams Error AADSTS70008: Security Token Expired

Struggling with Microsoft Teams Error AADSTS70008: Security Token Expired? Discover proven, step-by-step fixes to get back to seamless collaboration. Clear cache, re-authenticate, and prevent future issues fast!

How to Resolve Microsoft Teams Error Code 0x80070005

How to Resolve Microsoft Teams Error Code 0x80070005

Tired of Microsoft Teams Error Code 0x80070005 blocking your meetings? Follow our expert, step-by-step guide with quick fixes like permission resets, cache clears, and reinstalls to resolve access denied errors fast and get back to collaborating seamlessly.

Troubleshooting Microsoft Teams Error Message 80080005

Troubleshooting Microsoft Teams Error Message 80080005

Stuck with Microsoft Teams Error 80080005? This comprehensive guide delivers proven, step-by-step fixes for audio glitches, mic failures, and more. Restore seamless collaboration today!

Solving Microsoft Teams Error Code 404 on Web

Solving Microsoft Teams Error Code 404 on Web

Tired of Microsoft Teams Error Code 404 on web blocking your meetings? Follow our proven, step-by-step guide to clear cache, troubleshoot browsers, and resolve the "Not Found" error fast for seamless collaboration. Updated with the latest fixes!

Why is the Microsoft Teams Add-in Missing from My Outlook?

Why is the Microsoft Teams Add-in Missing from My Outlook?

Frustrated because the Microsoft Teams add-in is missing from Outlook? Uncover the top reasons and easy step-by-step fixes to bring back seamless Teams-Outlook integration without hassle. Works for latest versions!

How to Set Up and Link Microsoft Teams to Your Outlook Calendar

How to Set Up and Link Microsoft Teams to Your Outlook Calendar

Master how to set up and link Microsoft Teams to your Outlook Calendar with this ultimate step-by-step guide. Enjoy effortless meeting scheduling, seamless sync, and boosted teamwork – no tech headaches!

How to Find the Microsoft Teams Installation Folder

How to Find the Microsoft Teams Installation Folder

Struggling to locate the Microsoft Teams installation folder? This step-by-step guide reveals exact paths for Windows, macOS, and more. Master how to find the Microsoft Teams installation folder effortlessly and boost your productivity today!