SUM DAX Function

The SUM function adds all the numbers in a column.

DAX Syntax SUM([column])

Note: The SUM function only accepts column reference as the argument. If we want to filter the values that we are summing, we can use the SUMX function and specify an expression to sum over.

Example: Create a Measure with name “Total marks of 10th all students”.

DAX

Total marks of 10th all students = SUM([10th Marks])

Add this measure in a Card visual.

SUM dax function