Compartir a través de


ExcelScript.PivotLayoutType enum

Comentarios

Ejemplos

/**
 * This script sets the layout of the "Farms Sales" PivotTable to the "tabular"
 * setting. This places the fields from the Rows area in separate columns.
 */ 
function main(workbook: ExcelScript.Workbook) {
  // Get the PivotTable named "Farm Sales".
  const pivot = workbook.getPivotTable("Farm Sales");

  // Get the PivotLayout object.
  const layout = pivot.getLayout();

  // Set the layout type to "tabular".
  layout.setLayoutType(ExcelScript.PivotLayoutType.tabular);
}

Campos

compact

Formulario comprimido horizontalmente con etiquetas del siguiente campo de la misma columna.

outline

Los elementos de los campos internos están en la misma fila que los elementos de los campos exteriores y los subtotales siempre están en la parte inferior.

tabular

Los elementos de los campos internos siempre están en una nueva línea con respecto a los elementos de los campos exteriores.