我需要在谷歌脚本中包含和/或声明 if 条件。我是脚本新手,无法找到这样做的方法。请帮忙
if (dateval<>"") and (repval<>"") {condition if true}
感谢您的帮助。
我需要在谷歌脚本中包含和/或声明 if 条件。我是脚本新手,无法找到这样做的方法。请帮忙
if (dateval<>"") and (repval<>"") {condition if true}
感谢您的帮助。
逻辑符号
或 ||
并且 && 等于 == 不是 !=
我尝试了Serge insas 的答案,发现它没有编译。
我搞砸了,修改该行如下:
if ((dateval<>"") and (repval<>"")) {condition if true}
我终于让这个工作了。显然,它需要额外的括号。