ExcelScript.DynamicFilterCriteria enum
Comentarios
Ejemplos
/**
* This script applies a filter to a table that filters it
* to only show rows with dates from the previous month.
*/
function main(workbook: ExcelScript.Workbook) {
// Get the table named "ReportTable".
const table = workbook.getTable("ReportTable");
// Get the column with the header "Date".
const dateColumn = table.getColumnByName("Date");
// Apply a dynamic filter to the column.
// `lastMonth` will only show rows with a date from the previous month.
dateColumn.getFilter().applyDynamicFilter(ExcelScript.DynamicFilterCriteria.lastMonth);
}
Campos
aboveAverage | |
allDatesInPeriodApril | |
allDatesInPeriodAugust | |
allDatesInPeriodDecember | |
allDatesInPeriodFebruary | |
allDatesInPeriodJanuary | |
allDatesInPeriodJuly | |
allDatesInPeriodJune | |
allDatesInPeriodMarch | |
allDatesInPeriodMay | |
allDatesInPeriodNovember | |
allDatesInPeriodOctober | |
allDatesInPeriodQuarter1 | |
allDatesInPeriodQuarter2 | |
allDatesInPeriodQuarter3 | |
allDatesInPeriodQuarter4 | |
allDatesInPeriodSeptember | |
belowAverage | |
lastMonth | |
lastQuarter | |
lastWeek | |
lastYear | |
nextMonth | |
nextQuarter | |
nextWeek | |
nextYear | |
thisMonth | |
thisQuarter | |
thisWeek | |
thisYear | |
today | |
tomorrow | |
unknown | |
yearToDate | |
yesterday |
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.