Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
303 views
in Technique[技术] by (71.8m points)

Google App Script to notify change on particular tab of the sheet?

I am trying to create a notification rule on a google sheet when changes are made to a specific tab of the sheet.

I found some google app script and tweaked it but I continue to get an error message as below. What can be done to fix this?

TypeError: Cannot read property 'changeType' of undefined

Code:

    function notify(e) {
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet().getName();
  if (sheet == 'Analytics Project' && e.changeType == 'INSERT_ROW') {
    MailApp.sendEmail('[email protected]', 'Row Added', 'A row was added to your sheet.');
  }
}
question from:https://stackoverflow.com/questions/65851298/google-app-script-to-notify-change-on-particular-tab-of-the-sheet

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Explanation / Issue:

Your goal is to use an onChange trigger.

You need to understand the following two concepts:

  • Triggers (as the name suggests) are functions that are executed upon events. However, you are trying to manually execute this function but you are not supposed to do that because e is not defined and therefore you are getting a message that the event object e is undefined. Therefore, don't run it manually, but instead insert a new row and you will see that your script will do its job.

  • This is an installable trigger, namely you need to create an onChange installable trigger for notify.

To create an installable trigger, execute only and once the createTrigger function:

function notify(e) {
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet().getName();
  if (sheet == 'Analytics Project' && e.changeType == 'INSERT_ROW') {
    MailApp.sendEmail('[email protected]', 'Row Added', 'A row was added to your sheet.');
  }
}

function createTrigger(){
  var sheet = SpreadsheetApp.getActive();
  ScriptApp.newTrigger("notify")
  .forSpreadsheet(sheet)
  .onChange()
  .create();
}

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...