SumProduct
The SumProduct function returns the sum of the product of values in a series of columns.
Syntax
SumProduct(column, ...)
Function arguments:
column (required) - A column to be multiplied and summed. You can enter in any number of columns to be multiplied together.
Example
Finds the sum of the product of the columns
[Quantity] * [Unit Price]
This function is an alias for
Sum([Quantity] * [Unit Price])
Last updated
Was this helpful?