2

Google Apps Script を使用して、Google スプレッドシートのセル検証機能で候補リストの値を動的に変更したいと考えています。

Google 数式機能を使用して、Google スプレッドシートで動的ドロップダウン リストを作成できませんでした。

4

2 に答える 2

3

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

于 2012-07-03T05:52:15.337 に答える