Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function controlDedicaciones() {
- // Encuentra los valores de las celdas
- var rangoDedicaciones = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Dedicaciones").getRange("C8");
- var dedicaciones = rangoDedicaciones.getValue().getHours();
- var rangoEstimaciones = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("Dedicaciones").getRange("D8");
- var estimaciones = rangoEstimaciones.getValue().getHours();
- var ui = SpreadsheetApp.getUi();
- // Si las dedicaciones superan a las estimaciones
- if (dedicaciones > estimaciones){
- // Envia un mail a la dirección
- var mensaje = 'Esta semana tus dedicaciones fueron ' + dedicaciones +
- " horas, cuando tenias " + estimaciones + " horas estimadas";
- var asunto = 'Alerta: dedicaciones excedidas';
- MailApp.sendEmail(direccionEmail, subject, message);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment