ExcelScript.PivotHierarchy interface
Excel PivotHierarchy を表します。
注釈
例
/**
* This script creates a PivotTable from an existing table and adds it to a new worksheet.
* This script assumes there is a table in the current worksheet with columns named "Type" and "Sales".
*/
function main(workbook: ExcelScript.Workbook) {
// Create a PivotTable based on a table in the current worksheet.
let sheet = workbook.getActiveWorksheet();
let table = sheet.getTables()[0];
// Add the PivotTable to a new worksheet.
let newSheet = workbook.addWorksheet("Pivot");
let pivotTable = newSheet.addPivotTable("My Pivot", table, "A1");
// Add fields to the PivotTable to show "Sales" per "Type".
pivotTable.addRowHierarchy(pivotTable.getHierarchy("Type"));
pivotTable.addDataHierarchy(pivotTable.getHierarchy("Sales"));
}
メソッド
get |
PivotHierarchy に関連付けられているピボット フィールドを返します。 |
get |
PivotHierarchy の ID。 |
get |
PivotHierarchy の名前。 |
get |
名前で PivotField を取得します。 PivotField が存在しない場合、このメソッドは |
set |
PivotHierarchy の名前。 |
メソッドの詳細
getFields()
getId()
PivotHierarchy の ID。
getId(): string;
戻り値
string
getName()
PivotHierarchy の名前。
getName(): string;
戻り値
string
getPivotField(name)
名前で PivotField を取得します。 PivotField が存在しない場合、このメソッドは undefined
を返します。
getPivotField(name: string): PivotField | undefined;
パラメーター
- name
-
string
取得する PivotField の名前。
戻り値
ExcelScript.PivotField | undefined
setName(name)
PivotHierarchy の名前。
setName(name: string): void;
パラメーター
- name
-
string
戻り値
void
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Scripts