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 | 内部フィールドの項目は、常に外部フィールドの項目を基準にして新しい行に配置されます。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Scripts