ExcelScript.DynamicFilterCriteria enum
Remarques
Exemples
/**
* 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);
}
Champs
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 |
Collaborer avec nous sur GitHub
La source de ce contenu se trouve sur GitHub, où vous pouvez également créer et examiner les problèmes et les demandes de tirage. Pour plus d’informations, consultez notre guide du contributeur.