Disabling Filter Pane Aggregates In Power BI

When you add a field to the filter pane in a Power BI report and select the “Basic filtering” filter type, in most cases you’ll see some numbers next to the field values:

These numbers are counts of the number of rows for each value in the table that the field is from. The query to get these counts is usually quite fast and inexpensive, but if you’re filtering on a field from a very large table (for example a fact table) and/or using DirectQuery mode that might not be true. For example, the screenshot above is taken from a DirectQuery dataset and here’s the SQL query that generates the counts shown:

Luckily there’s a way to disable these queries and stop the counts being displayed: set the Discourage Implicit Measures property to true on your dataset. The main purpose of this property is to stop the automatic creation of implicit measures when building Power BI reports; this makes sense when you’re using calculation groups, for example, and when you add a calculation group to your dataset then this property is set to true for you. You can also set Discourage Implicit Measures to true manually by connecting to the dataset using Tabular Editor:

Here’s what the filter pane looks like with Discourage Implicit Measures set to true:

Just to be safe, I think it makes sense to set Discourage Implicit Measures to true for all DirectQuery datasets to reduce the overall number of queries run against your data source and reduce the risk of a really expensive query being run. I don’t think seeing the counts adds much value for end users anyway.

[Thanks to Ed Hansberry for pointing out this behaviour and John Vulner for explaining it]

10 thoughts on “Disabling Filter Pane Aggregates In Power BI

  1. “Discourage implicit measures” should be accessible from the Power BI desktop settings. This would help developers that have to deal with users predominantly using the dataset via “Analyze in Excel”.

  2. how do I do this for direct query.. I am not seeing the TOM explorer image in my power BI desktop

Leave a Reply