ExcelScript.CustomDataValidation interface
表示自定义数据验证条件。
注解
示例
/**
* This script adds data validation to a range.
* The validation prevents duplicate entries within that range.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the range "B2:B20".
const sheet = workbook.getActiveWorksheet();
const range = sheet.getRange("B2:B20");
// Set data validation on the range to prevent duplicate, non-blank entries.
const dataValidation = range.getDataValidation();
dataValidation.setIgnoreBlanks(true);
const duplicateRule : ExcelScript.CustomDataValidation = {
formula: "=COUNTIF($B$2:$B$20, B2)=1"
};
dataValidation.setRule({
custom: duplicateRule
});
}
属性
formula | 自定义数据验证公式。 这会创建特殊的输入规则,例如防止重复项或限制单元格区域中的总和。 |
属性详细信息
formula
自定义数据验证公式。 这会创建特殊的输入规则,例如防止重复项或限制单元格区域中的总和。
formula: string;
属性值
string