Compartir a través de


ExcelScript.PivotManualFilter interface

Plantilla configurable para que un filtro manual se aplique a un campo dinámico. condition define qué criterios deben establecerse para que el filtro funcione.

Comentarios

Ejemplos

/**
 * This script adds a manual filter to a PivotTable. 
 */
function main(workbook: ExcelScript.Workbook)
{
  // Get the first PivotTable in the workbook.
  const pivot = workbook.getPivotTables()[0];

  // Get the hierarchy to use as the filter.
  const location = pivot.getHierarchy("Location");

  // Use "Location" as the FilterHierarchy.
  pivot.addFilterHierarchy(location);

  // Select items for the filter.
  const cityFilter: ExcelScript.PivotManualFilter = {
    selectedItems: ["Seattle", "Chicago"]
  };

  // Apply the filter
  // Note that hierarchies and fields have a 1:1 relationship in Excel, so `getFields()[0]` always gets the correct field.
  location.getFields()[0].applyFilter({
    manualFilter: cityFilter
  });
}

Propiedades

selectedItems

Lista de elementos seleccionados que se van a filtrar manualmente. Estos deben ser elementos existentes y válidos del campo elegido.

Detalles de las propiedades

selectedItems

Lista de elementos seleccionados que se van a filtrar manualmente. Estos deben ser elementos existentes y válidos del campo elegido.

selectedItems?: (string | PivotItem)[];

Valor de propiedad

(string | ExcelScript.PivotItem)[]