Google

スポンサーリンク
Google Apps Script
Google Apps Script

Google Apps Scriptで曜日を日本語変換する方法

概要 Google App Script(GAS)で、曜日は日付フォーマットを使用しても英語表記にしかできません。 そこで、曜日を日本語変換をする方法を説明します。 サンプルプログラム /** * 曜日の配列 */ const WEEK_L...
Google Apps Script
Google Apps Script

Google Apps Scriptでテキスト入力付きダイアログボックスの表示をする方法(ui.prompt)

概要 Google App Script(GAS)で、テキスト入力付きダイアログボックスを表示する方法です。 「Browser.inputBox」でダイアログを表示する場合は、「Google Apps Scriptでテキスト入力付きダイアロ...
Google Apps Script
Google Apps Script

Google Apps Scriptでテキスト入力付きダイアログボックスの表示をする方法(Browser.inputBox)

概要 Google App Script(GAS)で、ダイアログボックスを表示する方法です。 Uiオブジェクトのpromptメソッドでテキスト入力付きダイアログを表示する方法は「Google Apps Scriptでテキスト入力付きダイアロ...
Google Apps Script
Google Apps Script

Google Apps Scriptでダイアログボックスの表示をする方法(ui.alert)

概要 Google App Script(GAS)で、ダイアログボックスを表示する方法です。 「Browser.msgBox」でダイアログを表示する場合は、「Google Apps Scriptでダイアログボックスの表示をする方法(Brow...
Google Apps Script
Google Apps Script

Google Apps Scriptでダイアログボックスの表示をする方法(Browser.msgBox)

概要 Google App Script(GAS)で、ダイアログボックスを表示する方法です。 Uiオブジェクトのalertメソッドでダイアログを表示する方法は「Google Apps Scriptでダイアログボックスの表示をする方法(ui....
Google Apps Script
Google Apps Script

Google Apps Scriptでファイルを指定したフォルダへ移動する方法

概要 Google Apps Script(GAS)で、Googleドライブのファイルを指定したフォルダへ移動する方法です。 使用するメソッド 構文 Fileオブジェクト.moveTo(destination) 引数 パラメーター必須型説明...
Google Apps Script
Google Apps Script

Google Apps Scriptでスプレッドシートのシートをコピーする方法

概要 Google Apps Scriptでスプレッドシートのシートをコピー(複製)する方法です。 使用するメソッド 構文 Sheetオブジェクト.copyTo(spreadsheet) 引数 パラメーター必須型説明spreadsheet○...
Google Apps Script
Google Apps Script

Google Apps Scriptでカレントフォルダを取得する方法

概要 Google Apps Scriptで、操作をしているファイルのあるフォルダ(カレントフォルダ)を取得したい場合があると思います。 その時に使用するメソッドの紹介と使い方です。 使用するメソッド 構文 Fileオブジェクト.getPa...
スポンサーリンク