在google docs脚本中添加和/或if语句的子句

时间:2013-04-06 20:37:23

标签: google-apps-script google-sheets

我需要在google脚本中包含和/或声明if条件。我是脚本的新手,我无法找到这样做的方法。请帮忙

if (dateval<>"") and (repval<>"") {condition if true}

感谢您的帮助。

3 个答案:

答案 0 :(得分:6)

您可以在that subject(和其他人)on this site.

上找到所有信息

在您的示例中答案是

if (dateval!="" && repval!="") {do something}

答案 1 :(得分:2)

逻辑符号
或者||
和&amp;&amp; 等于== 不!=

https://www.w3schools.com/js/js_comparisons.asp

答案 2 :(得分:-1)

我尝试了Serge insas's answer,发现它没有编译。

我四处乱逛,对行进行了如下修改:

if ((dateval<>"") and (repval<>"")) {condition if true}

我终于有了这个工作。显然,它需要多余的括号。