如何在Google电子表格中添加按钮,以便一个人只能点击一次?

时间:2017-07-12 14:49:53

标签: google-apps-script google-sheets

我正在寻找能够实现这一目标的应用脚本中的任何更改。 我已经制作了一个按钮并为其分配了正确的功能。

1 个答案:

答案 0 :(得分:0)

您可以使用PropertiesService存储特定于用户的数据。

    var properties = PropertiesService.getUserProperties();
    var buttonStatus = properties.getProperty("buttonStatus");

      if(!buttonStatus){

          //code to be executed after clicking the button

          properties.setProperty("buttonStatus", "clicked");
          return;

      }

      //code to be executed when user clicks the button multiple times (e.g. displaying notification)

      return;
}