Cara menggunakan google sheets api limits

Did you know it’s possible to send email right from Google Sheets using Google Apps Script? With some simple code you can use a cell value to trigger an alert message to your inbox.

Sending an email from Google Sheets requires the use of a Google Apps Script. But don’t worry, if you’ve never created a single Google Apps script before, sending an email is very simple.

In the following tutorial, you will learn how to check the value of a cell in Google Sheets. If the value is over a certain threshold limit, you can automatically send an alert email to any email address you like.

There are many uses for this script. You could receive an alert if the daily earnings in your sales report dip below a certain level. Or you could get an email if your employees report that they’ve billed the client for too many hours in your project tracking spreadsheet.

No matter the application, this script is compelling. It’ll also save you the time of having to monitor your spreadsheet updates manually.

Step 1: Sending an Email with Google Sheets

Before you can create a Google Apps Script to send an email from Google Sheets, you’ll also need a Gmail email address, which Google Apps Script will access to send out your alert emails.

You’ll also need to create a new spreadsheet that contains an email address.

Just add a name column and an email column, and fill them out with the person you want to receive the alert email.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Now that you have an email address to send an alert email to, it’s time to create your script.

To get into the script editor, click on Tools, and then click Script editor.

You’ll see a script window with a default function called myFunction(). Rename this to SendEmail().

Next, paste the following code inside the SendEmail() function:

// Fetch the email address
var emailRange = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet1").getRange("B2");
var emailAddress = emailRange.getValues();
// Send Alert Email.
var message = 'This is your Alert email!'; // Second column
var subject = 'Your Google Spreadsheet Alert';
MailApp.sendEmail(emailAddress, subject, message);

Here’s how this code works:

  • getRange and getValues pull the value from the cell specified in the getRange method.
  • var message and var subject define the text that’s going to build your alert email.
  • The MailApp.sendEmail function finally performs Google Scripts send email feature using your connected Google account.

Save the script by clicking the disk icon, and then run it by clicking the run icon (right arrow).

Keep in mind that Google Script needs permission to access your Gmail account to send the email. So the first time you run the script, you may see an alert like below.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Click on Review Permissions, and you’ll see another alert screen that you’ll need to bypass.

This alert screen is because you’re writing a custom Google Script that isn’t registered as an official one.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Just click on Advanced, and then click the Go to SendEmail (unsafe) link.

You’ll only need to do this once. Your script will run, and the email address you specified in your spreadsheet will receive an email like the one below.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Step 2: Reading a Value From a Cell in Google Sheets

Now that you’ve successfully written a Google Apps Script that can send an alert email, it’s time to make that alert email more functional.

The next step you’ll learn is how to read a data value out of a Google Spreadsheet, check the value, and issue a pop-up message if that value is above or below an upper limit.

Before you can do this, you’ll need to create another sheet in the Google Spreadsheet you’re working with. Call this new sheet “MyReport.”

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Keep in mind that cell D2 is the one you’re going to want to check and compare. Imagine that you want to know every month whether your total sales have dropped below $16,000.

Let’s create the Google Apps Script that does that.

Go back into your Script Editor window by clicking on Tools and then Script Editor.

If you’re using the same spreadsheet, you’ll still have the SendEmail() function in there. Cut that code and paste it into Notepad. You’ll need it later.

Paste the following function into the code window.

function CheckSales() {
  // Fetch the monthly sales
  var monthSalesRange = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("MyReport").getRange("D2"); 
  var monthSales = monthSalesRange.getValue();
  var ui = SpreadsheetApp.getUi(); 
  // Check totals sales
  if (monthSales < 16000){
    ui.alert('Sales too low!');
    }
}

How this code works:

  • Load the value from cell D2 into the monthSales variable.
  • The IF statement compares the monthly sales in cell D2 to $16,000
  • If the value is over 16,000, the code will trigger a browser message box with an alert.

Save this code and run it. If it works correctly, you should see the following alert message in your browser.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Now that you have a Google Apps Script that can send an email alert and another script that can compare a value from a spreadsheet, you’re ready to combine the two and send an alert instead of triggering an alert message.

Step 3: Putting It All Together

Now it’s time to combine the two scripts you’ve created into a single script.

By this point, you should have a spreadsheet with a tab called Sheet1 that contains the alert email recipient. The other tab called MyReport contains all of your sales information.

Back in the Script Editor, it’s time to put everything you’ve learned so far to practice.

Replace all of the code in the script editor with your two functions, edited as shown here.

function CheckSales() {
  // Fetch the monthly sales
  var monthSalesRange = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("MyReport").getRange("D2"); 
  var monthSales = monthSalesRange.getValue();
  // Check totals sales
  if (monthSales < 16000){
    // Fetch the email address
    var emailRange = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Sheet1").getRange("B2");
    var emailAddress = emailRange.getValues();
  
    // Send Alert Email.
    var message = 'This month your sales were ' + monthSales; // Second column
    var subject = 'Low Sales Alert';
    MailApp.sendEmail(emailAddress, subject, message);
    }
}

Notice the edits here.

Inside the IF statement, paste the SendEmail script inside the CheckSales() function inside the if statement brackets.

Secondly, concatenate the monthSales variable to the end of the email message using the + character.

The only thing left to do is trigger the CheckSales() function every month.

To do this, in the script editor:

  1. Click on the Edit menu item, and then click on Current project’s triggers.
  2. At the bottom of the screen, click on create a new trigger.
  3. Select the CheckSales function to run.
  4. Change Select event source to time-driven.
  5. Change Select type of time based trigger to Month timer.

Click Save to finalize the trigger.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

Every month, your new script will run and compare the total monthly sales amount in cell D2 to $16,000.

If it’s less, it’ll send an alert email notifying you of the low monthly sales.

Cara menggunakan google sheets api limits
Cara menggunakan google sheets api limits

As you can see, Google Apps Scripts packs a lot of functionality in a small package. With just a few simple lines of code, you can do some pretty amazing things.

If you want to experiment some more, try adding the $16,000 comparison limit into another cell in the spreadsheet, and then read that into your script before making the comparison. This way, you can change the limit just by changing the value in the sheet.

By tweaking the code and adding new code blocks, you can build upon these simple things you learn to build some amazing Google Scripts eventually.

Fitur apa yang digunakan untuk membatasi akses di level sheet?

Di spreadsheet, kita bisa membatasi akses edit setiap orang di cell, range, atau sheet tertentu dengan fitur Protect Range. Caranya : klik kanan di cell, range, atau sheet tertentu. Lalu klik Protect Range untuk mengatur perijinan (set permission) siapa saja yang bisa mengedit area tertentu di spreadsheet.

Apa saja fitur utama dari Google Sheets?

Simak beberapa fitur unggulan Google Sheets berikut ini..
Kolaborasi bersama tim / pengguna lain. Google Sheets memungkinkan pengguna untuk melakukan kolaborasi bersama pengguna lain. ... .
Terdapat riwayat revisi. ... .
Melakukan editing secara real-time. ... .
Integrasi dengan Google Forms. ... .

Jenis fitur apa yang bisa kamu gunakan di Google Sheets untuk meringkas data dalam jumlah besar dengan cepat?

Alat yang berguna untuk meringkas data dalam spreadsheet besar adalah dengan menggunakan fitur Pivot Table dari Google Sheets. Klik sel mana pun yang berisi data yang relevan, lalu klik Data di menu utama, lalu klik Tabel pivot di menu tarik-turun.

Bagaimana cara membuat spreadsheet?

Untuk membuat spreadsheet baru:.
Buka layar utama Spreadsheet di sheets.google.com..
Klik Baru. . Ini akan membuat dan membuka spreadsheet baru Anda..