Google Apps Script API
    Preparing search index...

    Access and modify value groups in pivot tables.

    interface PivotValue {
        getDisplayType(): PivotValueDisplayType;
        getFormula(): string;
        getPivotTable(): GoogleAppsScript.Spreadsheet.PivotTable;
        getSummarizedBy(): PivotTableSummarizeFunction;
        setDisplayName(name: string): GoogleAppsScript.Spreadsheet.PivotValue;
        setFormula(formula: string): GoogleAppsScript.Spreadsheet.PivotValue;
        showAs(
            displayType: PivotValueDisplayType,
        ): GoogleAppsScript.Spreadsheet.PivotValue;
        summarizeBy(
            summarizeFunction: PivotTableSummarizeFunction,
        ): GoogleAppsScript.Spreadsheet.PivotValue;
    }
    Index

    Methods