GrandTotal
Last updated
Was this helpful?
Last updated
Was this helpful?
The GrandTotal formula returns the grand total for the given aggregate formula. GrandTotal is shorthand for Subtotal(aggregate, "grand_total").
GrandTotal(aggregate)
Function arguments:
aggregate (required) - The Aggregate Functions to use in the function.
Examples: Count(), Sum([Sales Amount])
In a chart visualizing order counts per Product Type and Region, you can add a calculated column with the formula to the tooltip:
GrandTotal(CountDistinct([Order Number]))
To see an overall total count of distinct orders across all categories.
The calculation is shown in the tooltip in this example, but is usable anywhere an aggregate formula is allowed.