OBJECT
TableReportTotal
link GraphQL Schema definition
- type TableReportTotal {
- # Whether the totals row is shown for each group in a table report. Has no effect
- # unless at least one of the individual total values below is enabled.
- : Boolean!
- # Whether a grand total covering all rows is shown in addition to the per-group
- # totals.
- : Boolean!
- # Whether the totals appear above the rows they summarise (Top) or below them
- # (Bottom).
- : ReportTotalPosition!
- # Whether the sum of each numeric column is shown in the totals.
- : Boolean!
- # Whether the average of each numeric column is shown in the totals.
- : Boolean!
- # Whether the minimum value of each numeric column is shown in the totals.
- : Boolean!
- # Whether the maximum value of each numeric column is shown in the totals.
- : Boolean!
- # Whether a status breakdown (such as won, lost and open counts for opportunities
- # or leads) is shown in the totals.
- : Boolean!
- }