# 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

```
SumProduct([Quantity], [Unit Price])
```

* Finds the sum of the product of the columns `[Quantity] * [Unit Price]`
* This function is an alias for `Sum([Quantity] * [Unit Price])`


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://support.meetuma.ai/uma-knowledgebase/data-and-reporting/analytics-pro/functions/aggregate-functions/sumproduct.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
