Javascript – Schedule checkbox to check/uncheck background automatically
Below script was working fine yesterday, and today I have got an error: Exception: This script has too many triggers. Triggers must be deleted from the script before more can be added. function chEcked() { SpreadsheetApp.getActive().getSheetByName('To-do').getRange("F1").setValue(true); SpreadsheetApp.getActive().getSheetByName('OverDate').getRange("F1").setValue(true); } function unchEcked()…