SUM

Updated on

SUM is a DAX function that adds all the numbers in a specified column.

Syntax

SUM( ColumnName )
Argument Properties Description
ColumnName The column that contains the numbers to sum.

Return Values

A decimal number.

Remarks

If you want to filter the values that you are summing, you can use the SUMX function and specify an expression to sum over.

Example

The following example adds all the numbers that are contained in the column, Amt, from the table, Sales.

= SUM(Sales[Amt])

Other functions related to SUM are:

Contribute » | Contributors: Rick de Groot
Microsoft documentation: https://learn.microsoft.com/en-us/dax/sum-function-dax

2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy