Compartir a través de


ExcelScript.ConditionalCellValueRule interface

Representa una regla de formato condicional de valor de celda.

Comentarios

Ejemplos

/**
 * 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);
}

Propiedades

formula1

Fórmula, si es necesario, en la que se va a evaluar la regla de formato condicional.

formula2

Fórmula, si es necesario, en la que se va a evaluar la regla de formato condicional.

operator

Operador del formato condicional del valor de celda.

Detalles de las propiedades

formula1

Fórmula, si es necesario, en la que se va a evaluar la regla de formato condicional.

formula1: string;

Valor de propiedad

string

formula2

Fórmula, si es necesario, en la que se va a evaluar la regla de formato condicional.

formula2?: string;

Valor de propiedad

string

operator

Operador del formato condicional del valor de celda.

operator: ConditionalCellValueOperator;

Valor de propiedad