Un'enumerazione dei modi per visualizzare un valore pivot come funzione di un altro valore.
Per chiamare un enum, devi chiamare la relativa classe, il nome e la proprietà di base. Ad esempio,
SpreadsheetApp.PivotValueDisplayType.PERCENT_OF_ROW_TOTAL.
Proprietà
Proprietà
Tipo
Descrizione
DEFAULT
Enum
Predefinita. Mostra i valori pivot come valore effettivo e non come funzione di un altro valore.
PERCENT_OF_ROW_TOTAL
Enum
Mostra i valori del pivot come percentuale del totale per la riga.
PERCENT_OF_COLUMN_TOTAL
Enum
Mostra i valori del pivot come percentuale del totale per la colonna in questione.
PERCENT_OF_GRAND_TOTAL
Enum
Mostra i valori pivot come percentuale del totale generale.
[[["Facile da capire","easyToUnderstand","thumb-up"],["Il problema è stato risolto","solvedMyProblem","thumb-up"],["Altra","otherUp","thumb-up"]],[["Mancano le informazioni di cui ho bisogno","missingTheInformationINeed","thumb-down"],["Troppo complicato/troppi passaggi","tooComplicatedTooManySteps","thumb-down"],["Obsoleti","outOfDate","thumb-down"],["Problema di traduzione","translationIssue","thumb-down"],["Problema relativo a esempi/codice","samplesCodeIssue","thumb-down"],["Altra","otherDown","thumb-down"]],["Ultimo aggiornamento 2024-12-02 UTC."],[[["`PivotValueDisplayType` is used to control how values are displayed in a pivot table, offering options to present them as raw values or percentages relative to row, column, or grand totals."],["To utilize a specific display type, reference it using the format `SpreadsheetApp.PivotValueDisplayType.[property]`, such as `SpreadsheetApp.PivotValueDisplayType.PERCENT_OF_ROW_TOTAL` for displaying values as a percentage of the row total."],["Available display types include `DEFAULT` (displays the raw value), `PERCENT_OF_ROW_TOTAL`, `PERCENT_OF_COLUMN_TOTAL`, and `PERCENT_OF_GRAND_TOTAL`."]]],[]]