ExcelScript.ConditionalCellValueRule interface
Stellt eine bedingte Formatregel für Zellenwerte dar.
Hinweise
Beispiele
/**
* This script applies conditional formatting to a range.
* That formatting is conditional upon the cell's numerical value.
* Any value between 50 and 75 will have the cell fill color changed and the font made italic.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the range to format.
const sheet = workbook.getActiveWorksheet();
const ratingColumn = sheet.getRange("D2:D20");
// Add cell value conditional formatting.
const cellValueConditionalFormatting =
ratingColumn.addConditionalFormat(ExcelScript.ConditionalFormatType.cellValue).getCellValue();
// Create the condition, in this case when the cell value is between 50 and 75.
let rule: ExcelScript.ConditionalCellValueRule = {
formula1: "50",
formula2: "75",
operator: ExcelScript.ConditionalCellValueOperator.between
};
cellValueConditionalFormatting.setRule(rule);
// Set the format to apply when the condition is met.
let format = cellValueConditionalFormatting.getFormat();
format.getFill().setColor("yellow");
format.getFont().setItalic(true);
}
Eigenschaften
formula1 | Die Formel, falls erforderlich, für die die Regel für das bedingte Format ausgewertet werden soll. |
formula2 | Die Formel, falls erforderlich, für die die Regel für das bedingte Format ausgewertet werden soll. |
operator | Der Operator des bedingten Zellwertformats. |
Details zur Eigenschaft
formula1
Die Formel, falls erforderlich, für die die Regel für das bedingte Format ausgewertet werden soll.
formula1: string;
Eigenschaftswert
string
formula2
Die Formel, falls erforderlich, für die die Regel für das bedingte Format ausgewertet werden soll.
formula2?: string;
Eigenschaftswert
string
operator
Der Operator des bedingten Zellwertformats.
operator: ConditionalCellValueOperator;
Eigenschaftswert
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Scripts