如何每隔60秒刷新一次Google表格?

时间:2017-04-21 04:45:38

标签: google-apps-script google-sheets custom-function importjson

我在从here检索到的Google表格中有一个ImportJSON脚本。现在我有代码:

=ImportJSON("http://date.jsontest.com/","/time", "")

现在简单地检索时间。我的问题是它不会自动刷新。

如何每60秒刷新一次?

1 个答案:

答案 0 :(得分:2)

我在google apps脚本中使用了刷新脚本。

首先,你需要生成一个随机数,以欺骗它认为它是一个新的链接。

setClient()

之后你需要写信给想要有时间的单元格

  var min = Math.ceil(0);
  var max = Math.floor(99);
  var randomNum = Math.floor(Math.random() * (max - min + 1)) + min

然后,您可以将脚本设置为随时运行。