Compartir a través de


ExcelScript.DateFilterCondition enum

Enumeración que representa todas las condiciones aceptadas por las que se puede aplicar un filtro de fecha. Se usa para configurar el tipo de PivotFilter que se aplica al campo.

Comentarios

Ejemplos

/**
 * This script applies a filter to a PivotTable that filters out rows 
 * that aren't from this month.
 */
function main(workbook: ExcelScript.Workbook) {
  // Get the "Date Recorded" field to filter. 
  // The data in this field must be dates in order for the filter to work.
  const pivot = workbook.getPivotTables()[0];
  const rowHierarchy = pivot.getRowHierarchy("Date Recorded");
  const rowField = rowHierarchy.getFields()[0];

  // Apply the date filter.
  rowField.applyFilter({
    dateFilter: {
      // Setting the condition to `thisMonth` means items that are before or
      // after this month will not be displayed.
      condition: ExcelScript.DateFilterCondition.thisMonth
    }
  });
}

Campos

after

La fecha es posterior a la fecha del comparador.

Criterios necesarios: {comparator}. Criterios opcionales: {wholeDays}.

afterOrEqualTo

La fecha es posterior o igual a la fecha del comparador.

Criterios necesarios: {comparator}. Criterios opcionales: {wholeDays}.

allDatesInPeriodApril

La fecha es en abril.

allDatesInPeriodAugust

La fecha es en agosto.

allDatesInPeriodDecember

La fecha es en diciembre.

allDatesInPeriodFebruary

La fecha es en febrero.

allDatesInPeriodJanuary

La fecha es en enero.

allDatesInPeriodJuly

La fecha es en julio.

allDatesInPeriodJune

La fecha es en junio.

allDatesInPeriodMarch

La fecha es en marzo.

allDatesInPeriodMay

La fecha es en mayo.

allDatesInPeriodNovember

La fecha es en noviembre.

allDatesInPeriodOctober

La fecha es en octubre.

allDatesInPeriodQuarter1

La fecha es en el trimestre 1.

allDatesInPeriodQuarter2

La fecha es en el trimestre 2.

allDatesInPeriodQuarter3

La fecha es en el trimestre 3.

allDatesInPeriodQuarter4

La fecha es en el cuarto trimestre.

allDatesInPeriodSeptember

La fecha es en septiembre.

before

La fecha es anterior a la fecha del comparador.

Criterios necesarios: {comparator}. Criterios opcionales: {wholeDays}.

beforeOrEqualTo

La fecha es anterior o igual a la fecha del comparador.

Criterios necesarios: {comparator}. Criterios opcionales: {wholeDays}.

between

Entre lowerBound y upperBound fechas.

Criterios necesarios: {lowerBound, upperBound}. Criterios opcionales: {wholeDays, exclusive}.

equals

Es igual al criterio del comparador.

Criterios necesarios: {comparator}. Criterios opcionales: {wholeDays, exclusive}.

lastMonth

La fecha es el mes pasado.

lastQuarter

La fecha es el último trimestre.

lastWeek

La fecha es la semana pasada.

lastYear

La fecha es el año pasado.

nextMonth

La fecha es el mes siguiente.

nextQuarter

La fecha es el próximo trimestre.

nextWeek

La fecha es la próxima semana.

nextYear

La fecha es el año siguiente.

thisMonth

La fecha es este mes.

thisQuarter

La fecha es este trimestre.

thisWeek

La fecha es esta semana.

thisYear

La fecha es este año.

today

La fecha es hoy.

tomorrow

La fecha es mañana.

unknown

DateFilterCondition es desconocido o no es compatible.

yearToDate

La fecha está en el mismo año hasta la fecha.

yesterday

La fecha es ayer.