我需要在 Google pps 脚本中包含和/或声明 if 条件。我是脚本新手,无法找到方法来执行此操作。
if (dateval<>"") and (repval<>"") {condition if true}
逻辑符号 或者 || 和 && 等于== 不!=
我尝试了Serge insas的答案,发现它没有编译。
我搞乱了,修改了该行如下:
if ((dateval<>"") and (repval<>"")) {condition if true}
我终于让它发挥作用了。显然,它需要额外的括号。