SUM function (DAX) - DAX | Microsoft Learn
learn.microsoft.com › en-us › daxJun 21, 2022 · DAX SUM(<column>) Parameters Return value 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. DAX = SUM(Sales [Amt]) See also SUMX
SUM – DAX Guide
https://dax.guide › sumSUMX is required to evaluate formulas, instead of columns. DEFINE. MEASURE Sales [ # Quantity 1 ] = SUM ( Sales[Quantity] ). MEASURE Sales [ # Quantity 2 ] ...