14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GASでポップアップを出す

Last updated at Posted at 2019-02-26

勉強したのでメモ

やりたいこと

こんなかんじでポップアップを出す
スクリーンショット 2019-02-26 22.52.27.png

手順

グーグルスプレッドシートで、スクリプトエディタを選択
スクリーンショット 2019-02-26 22.50.51.png

コード.gsというところに下記のように書く

スクリーンショット 2019-02-26 22.55.22.png

function myFunction() {
  //メッセージボックスを出す
  var result = Browser.msgBox("こんにちは", Browser.Buttons.OK_CANCEL);
  if (result == "cancel"){
    Logger.log("canceled...")
  }
}

スプレッドシート上でキャンセルボタンを押した時
Browser.msgBox("こんにちは", Browser.Buttons.OK_CANCEL)cancelを返す

選択するポップアップ

スクリーンショット 2019-02-26 23.06.51.png
function myFunction() {
  //メッセージボックスで選択肢を出す
  var result = Browser.msgBox("えらんでね", "あなたはmac?", Browser.Buttons.OK_CANCEL);
  if(result == "yes"){
    Browser.msgBox("おなじだ")
  } else {
    Browser.msgBox("残念・・・")
  }
}
スクリーンショット 2019-02-26 23.07.43.png

function myFunction() {
  //入力するメッセージボックス
  var result = Browser.inputBox("御名前は?", "御名前をどうぞ:", Browser.Buttons.OK_CANCEL);
  if (result != "cancel"){
    Browser.msgBox("こんにちは" + result + "さん");
  }
}
14
14
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
14
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?