如何确定Google表格脚本编辑器中哪一行已更改/更新

时间:2018-02-02 16:32:42

标签: google-apps-script triggers google-sheets onchange google-apps-script-editor

对于我的google工作表,每行都会随机填充,但是当它填充后,我想要一个函数运行。每次填充某些内容时,它都是下一行(它不是单元格或随机行)。

我现在正在运行onChange触发器。它设置为"在更改"时从电子表格运行FunctionA。在该函数中,如何获取已经特别更改/更新的行?我将使用什么函数/方法来操纵那行?

我四处寻找,但无法找到合适的答案。

1 个答案:

答案 0 :(得分:4)

您应该使用new ChainableLib(null); // error, not string | number | boolean new ChainableLib(true).one() // error, true is not a string new ChainableLib(true).two() // error, true is not a number new ChainableLib(true).three() // this one is okay 电子表格事件。 (https://developers.google.com/apps-script/guides/triggers/events

您可以这样称呼它:

onEdit

当电子表格的单元格上有编辑时,它会自动运行。