DAX Calculate function with and without FILTER

The difference here is that CALCULATE allows simple filters which will replace the existing filter context. In your example, CALCULATE will compute the measure [X] using the existing filter context, except that it removes any existing filter context for FactTable[Color] and replaces it with FactTable[Color] = Red.

The FILTER function is an iterator, which means it steps through the table (passed in as its first argument) one row at a time and evaluations the expression (second argument) for each row. When you have a FILTER function inside of CALCULATE, it will combine the existing filter context with the results of the FILTER (instead of replacing it like a simple filter argument).

In general, you want to use simple filters whenever you have a choice as the computation will be more efficient. However, the FILTER function allows you to do much more complex filtering so it still highly useful in cases where simple filters aren't enough.


Further reading: FILTER() – When, Why, & How to Use It


Not only the results, but also the way of obtaining those results for both measures will not be the same.

I created two measures similar to your example to test this:

TestAvgNoFilter = CALCULATE([PrcAvg]; cal[ReadDate]=DATE(2018;05;23))
TestAvgFilter = CALCULATE([PrcAvg]; filter(cal; cal[ReadDate]=DATE(2018;05;23)))

When I simply throw both of them into pivot table without any additional fields or slicers, ofcourse both of them show the same result:

pic1

However:

  1. Using FILTER has significant performance impact, which can be clearly seen looking at query plans and utilization of Storage Engine vs Formula Engine. It creates additional temporary table that it needs to "interact" with already existing filters coming from report/pivot table itself (rows, columns, slicers). You won't notice anything for simple average value in single cell, but if your [x] measure itself is complicated and there are many of those "initial" filters, the difference in calculation time can be huge.

  2. FILTER retains and iteracts with initial filter context, while filter expression used directly in CALCULATE ignores it. See what happens, when I add ReadDate to the pivot table:

pic2

This is precisely why the measure without FILTER is faster: it doesn't care what dates are in columns - it already calculated one "true" value, while the measure with FILTER evaluates itself against initial filters for every row.

Results in both columns can be considered correct - it really all depends on interpretation and how you name the measures ;).

As a general rule I would suggest you don't use FILTER when you don't have to. Save it's power for when it's really needed.


The DAX syntax of the automatic FILTER function generated by DAX in place of a logical expression requires that you express a single column in the filter expression. Let's take this example -

Measure1 = CALCULATE([X], 'FactTable'[Color]="Red")

The syntax above is internally transformed in the following one, which you might write in an explicit way obtaining the same behavior from your DAX measure.

Measure1 = CALCULATE([X], FILTER(ALL('FactTable'[Color]), 'FactTable'[Color]="Red"))

So If you use last function in Measure2 value it will fetch the same result.

For further reference you can visit this link.

Tags:

Powerbi

Dax