Google Apps Script を使用して、Google スプレッドシートのセル検証機能で候補リストの値を動的に変更したいと考えています。
Google 数式機能を使用して、Google スプレッドシートで動的ドロップダウン リストを作成できませんでした。
Google Apps Script を使用して、Google スプレッドシートのセル検証機能で候補リストの値を動的に変更したいと考えています。
Google 数式機能を使用して、Google スプレッドシートで動的ドロップダウン リストを作成できませんでした。
newDataValidation()を使用してデータ検証ルールを作成できるようになりました。
例:
// Set the data-validation rule for cell A1 to require a value from B1:B10.
var cell = SpreadsheetApp.getActive().getRange('A1');
var range = SpreadsheetApp.getActive().getRange('B1:B10');
var rule = SpreadsheetApp.newDataValidation().requireValueInRange(range)
.build();
cell.setDataValidation(rule);
ソース: https://gsuite-developers.googleblog.com/2013/08/answering-another-top-request-data.html