SUM is a simple aggregation function that adds up all the values in a single column
Total_Sales = SUM(SalesData[Sales])
Use SUM when you want to sum up all the values in a numeric column without any complex row-by-row operations.