Excel.FilterOn enum
Hinweise
Beispiele
// This function adds a custom AutoFilter to the active worksheet
// and applies the filter to a column of the used range.
await Excel.run(async (context) => {
// Retrieve the active worksheet and the used range on that worksheet.
const sheet = context.workbook.worksheets.getActiveWorksheet();
const farmData = sheet.getUsedRange();
// Add a filter that will only show the rows with values that end with the letter "e" in column 1.
sheet.autoFilter.apply(farmData, 1, {
criterion1: "=*e",
filterOn: Excel.FilterOn.custom
});
await context.sync();
});
Felder
bottomItems = "BottomItems" | |
bottomPercent = "BottomPercent" | |
cellColor = "CellColor" | |
custom = "Custom" | |
dynamic = "Dynamic" | |
fontColor = "FontColor" | |
icon = "Icon" | |
topItems = "TopItems" | |
topPercent = "TopPercent" | |
values = "Values" |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins