ExcelScript.FilterDatetime interface
表示在筛选值时如何筛选日期。
注解
示例
/**
* This script applies a filter to a PivotTable that filters it
* to only show rows from between June 20th, 2022 and July 10th, 2022.
*/
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];
// Create the filter's date boundaries.
let earliestDate: ExcelScript.FilterDatetime = {
date: "2022-06-20",
specificity: ExcelScript.FilterDatetimeSpecificity.day
};
let latestDate: ExcelScript.FilterDatetime = {
date: "2022-07-10",
specificity: ExcelScript.FilterDatetimeSpecificity.day
};
// Apply the date filter.
rowField.applyFilter({
dateFilter: {
condition: ExcelScript.DateFilterCondition.between,
lowerBound: earliestDate,
upperBound: latestDate
}
});
}
属性
date | 用于筛选数据的采用 ISO8601 格式的日期。 |
specificity | 用于保留数据的日期的具体程度。 例如,如果日期为 2005-04-02,并且特定性设置为“month”,则筛选操作将保留所有行的日期为 2005 年 4 月。 |
属性详细信息
date
用于筛选数据的采用 ISO8601 格式的日期。
date: string;
属性值
string
specificity
用于保留数据的日期的具体程度。 例如,如果日期为 2005-04-02,并且特定性设置为“month”,则筛选操作将保留所有行的日期为 2005 年 4 月。
specificity: FilterDatetimeSpecificity;