Darren Gosbell

Setting a dynamic default slicer value in Power BI

Currently Power BI does not support a way for dynamically setting a default value for a slicer using an expression. One common example of where this sort of capability would be really useful is if you have a dashboard that you want to default to show the current day’s data by default, but you want the user to be able to select a custom date filter if they so desire.

While I could go into my report and set a slicer to filter it for today’s date of 15 May 2023. When I open the report tomorrow this slicer will still have the hard coded value of 15 May 2023. You could potentially create measures that use something like: CALCULATE([Sales], 'Calendar'[Date] = Today() ) there are a number of problems with this. While it will automatically show the Sales amount for the value of Today() – the problem is that on the Power BI Service “Today” is set based on the UTC time. So depending on what timezone you are in the day can change part way through your working hours.

While there currently is no built-in way of configuring this within a slicer itself this there are workarounds and I’m going to walk you through one approach that I’ve used in the past. This approach has a couple of moving parts. The first one is that as part of a nightly data load process I update a number of columns in a shared “Calendar” table.

Implementation

In the example below I’ve added 3 indicator columns for IsToday, IsYesterday and IsCurrentMonth. This post was published on 15 May 2023 so for that date the IsToday column has a value of True.

NOTE: I’ve simulated this in a simple Power BI example using a calculated table, but you need to be very careful using a calculated table in a production scenario since the Power BI service runs in UTC time so depending on when your data transforms get run your indicator columns could be updated incorrectly.

Once I’ve built out the body of my report, adding visuals and slicers I create 4 bookmarks:

  1. Custom Range – this has no report level filters and has my date slicer set as visible
  2. Today – this has a report level filter for IsToday=True and sets the date slicer to hidden
  3. Yesterday – this has a report level filter for IsYesterday=True and sets the date slicer to hidden
  4. Current Month – this has a report level filter for IsCurrentMonth=True and sets the date slicer to hidden

Then I add add 4 buttons to my report, one for each of the bookmarks above. Then as I click on each button it changes the filtering appropriately.

If I save and publish my report with the Today bookmark selected this means that each night when my data load routine is run, and my data model is refreshed the IsToday column is updated. Then the next morning when my users open the report they see the data automatically filtered for the current date. And if they wish to view some other date, I have a set of handy short cuts for common date filters, or they click on the Custom Range option to set their own custom filter.

Limitations

Where this approach falls down a bit is when you have multiple pages in your report, and you want the date filters to affect all the pages. For the indicator columns it’s easy enough to set the filters linked to your bookmarks as report level filters. And you can setup your “custom range” slicer as a sync’ed slicer so that it affects multiple pages. The tricky bit comes with the showing and hiding the slicer as you can only show and hide a visual on the current page with a bookmark.

The approach I chose to take was to make the “Custom Range” bookmark have the “Current page” option set so that the user was always returned to the first page in the report if they selected that option. It’s not ideal, but otherwise you would need different “Custom Range” bookmarks per page and it just gets a bit messy.

4 Comments

  1. Alex

    I use this in my DateDim

    CASE WHEN [Year] = YEAR(GETDATE()) THEN ‘Current Year’ ELSE CAST([Year] as nvarchar(4)) END AS [Year (with Current)],

    CASE
    WHEN [MonthNumber] = MONTH(GETDATE()) THEN ‘Current Month’
    WHEN [MonthNumber] = MONTH(GETDATE())-1 AND MONTH(GETDATE())-1 > 0 THEN ‘Previous Month’
    WHEN [MonthNumber] = 12 AND MONTH(GETDATE())-1 = 0 THEN ‘Previous Month’
    ELSE [Month]
    END AS [Month (with Previous/Current)],

    CASE
    WHEN [Year] = YEAR(GETDATE()) AND [MonthNumber] = MONTH(GETDATE()) THEN ‘Current YearMonth’
    ELSE CAST(YearMonthNumber as nvarchar(10))
    END AS [YearMonth (with Current)],

  2. Mario Infante

    Hi Darren, thanks fors the advice.
    I’ve tried this PowerBI Addon on appsource: Preselect slicer, from Jérôme LEBRUN, and found it useful to make the date slicer dinamic.

  3. Joe Smith

    I’ve had need to create a filter of “As Of Dates” based on multiple sets of patterns; for instance, the first day of each month for the last 12 months, the last 4 Mondays, and the current date. To do this, I’ve created a table called “Report Dates”, containing a Dates column (for relationship to the calendar table) and a sort order column for the dates. I then add a calculated column named “Report Dates”, sorted by the that I use as a filter in the Filter Pane:
    Report Dates = IF(‘Report Dates'[Dates] = MAX(‘Report Dates'[Dates]), “Latest”, FORMAT(‘Report Dates'[Dates], “yyyy-mmm-dd (ddd)”))
    This setup allows me to not only set up subscriptions with dynamic dates, but also can be applied to all pages.

  4. Adrian Ellis

    One option is to put all the pages onto a single page instead and show/hide the different page visuals using bookmarks and selection groups.

Leave a Reply to Mario Infante Cancel reply

Your email address will not be published. Required fields are marked *