SQL Server DAX Calculating Data


By:
Overview

While working with multiple tables there is often a need to calculate data from one table based on filtered criteria from the context of another table. In this chapter, we will look at the CALCULATE function that deals with this scenario. This is one of the most frequently used functions while working with related tables.

Explanation

In the AdventureWorks tabular model, Sales Territory and Internet Sales are two tables in a one to many relationship through the Sales Territory Key. Let's say that depending on this key which joins these two tables, we want to find the total of Internet Sales Amount having the Currency Key as 100 which stands for the USD currency.

Open the tabular model and Sales Territory table. Add a calculated field and type in the DAX formula as shown below. When the formula is evaluated, this function selects all the records from the Internet Sales table based on the Sales Territory Key and then aggregates the Sales Amount field where the Currency Key value is 100. Once you enter the formula and click Enter, the values will be calculated and populated.

CalcAndDate 1 Calc

Based on the context of the Sales Territory table and using filters specific in the DAX formula, values are calculated from the Internet Sales table corresponding to the Internet Sales Amount field. There is one other similar function CALCULATETABLE which can be used for a similar purpose. You can read more about this function here.

Additional Information
  • Try to use Summarize, Filter, Sum, RankX and Calculate in the same DAX formula to understand how all these functions can work together in a single formula.





Comments For This Article

















get free sql tips
agree to terms