Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

203
Views
Coding google sheets script

i work in insurance, and i have a Google Sheets for all my coworkes where i take note of all policies that we make with external collaborations. I need this: if today a policy expire, the code should send an email to my company addres. Now the code that i used is working, but it only work for one sheet, and send mail even if he finds black spaces. enter image description here

function alertSender() {
  var today = new Date(); 
  var values = SpreadsheetApp.getActiveSheet().getDataRange().getValues();
  for(n=1;n<values.length;++n){
    var cell_date = values[n][5];
    var expired = today > cell_date;
    if (expired) {
      MailApp.sendEmail(values[n][6], 'Mail automatica', 'Servizio scaduto per il sig. ' + values[n][0]);
      Logger.log('Mail inviata all\'indirizzo ' + values[n][6] + ' del sig. ' + values[n][0]);
    }
  }
}

This is the code i used, where Date (5) is column F and mail (6) is column G.

Just execution started and execution completed, no errors but no emails, and yes i put in and expired date for test purposes

https://docs.google.com/spreadsheets/d/1JXgpU5QkV3XlhXh6VMVy_sTeDkXr_Egr9lzhfyno8O4/edit?usp=sharing

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Try

function alertSender() {
  var today = new Date();
  SpreadsheetApp.getActiveSpreadsheet().getSheets().forEach(sheet => {
    var values = sheet.getDataRange().getValues().splice(1).filter(r => r[5] != '');
    for (n = 1; n < values.length; ++n) {
      var cell_date = values[n][5];
      var expired = today > cell_date;
      if (expired) {
        MailApp.sendEmail(values[n][6], 'Mail automatica', 'Servizio scaduto per il sig. ' + values[n][0]);
        Logger.log('Mail inviata all\'indirizzo ' + values[n][6] + ' del sig. ' + values[n][0]);
      }
    }
  })
}

references

  • getSheets()
  • forEach
  • splice()
  • filter
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!