次の方法で共有


ExcelScript.PivotLayoutType enum

注釈

/**
 * 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);
}

フィールド

compact

同じ列の次のフィールドからのラベルを含む水平方向に圧縮されたフォーム。

outline

内部フィールドの項目は外部フィールドの項目と同じ行にあり、小計は常に下部にあります。

tabular

内部フィールドの項目は、常に外部フィールドの項目を基準にして新しい行に配置されます。