GAS简单脚本不起作用

时间:2013-02-16 16:30:38

标签: loops google-apps-script

根据谷歌的说法,我有一个“按书”的脚本,它不起作用。

function capacityAlert() {
var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("counts");
var currentValue = sheet.getRange("D2:D13").getValues();
Logger.log('currentValue = '+currentValue);
var nRows = currentValue.length;
for(var i=0;i<nRows;i++)
{
    //Logger.log(currentValue[i][0]);
    Logger.log('row '+i+' col[0] = '+currentValue[i][0]);
    if(currentValue[i][0]=="true")
    {
      Browser.msgBox("Capacity Reached");
        //MailApp.sendEmail("dave@davelalande.com","Capacity Reached","Capacity Reached, \nplease check the sheet and remove the date.");
    }  
}
}

这是日志所说的内容。

currentValue = false,false,false,false,false,false,false,false,false,false,false,true
row 0 col[0] = false
row 1 col[0] = false
row 2 col[0] = false
row 3 col[0] = false
row 4 col[0] = false
row 5 col[0] = false
row 6 col[0] = false
row 7 col[0] = false
row 8 col[0] = false
row 9 col[0] = false
row 10 col[0] = false
row 11 col[0] = true

它不是邮件,所以我试图创建一个弹出窗口,看看它是否正常工作。我已经关闭并使用一个正常工作的三行弹出脚本测试我的pop,所以我知道弹出窗口正在工作。

调试是空白的?我错过了什么?

感谢您提供任何帮助,您可以自由选择。

戴夫

1 个答案:

答案 0 :(得分:0)

这对我来说非常有用。

 if(currentValue[i][0]==true)

感谢ScampMichael,Serge和Phil的帮助。