Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Set default date to today on date slicer

Hi everyone, I am using the between date slicer and I would like to know if there is a possibility to set the first and second date to today by default every time we open the report. (Below my date table)

 date slicer.PNGdate table.PNG

1 ACCEPTED SOLUTION
v-rzhou-msft
Community Support
Community Support

Hi @Anonymous 

In addtion to Fowmy and  

 

Slicer = CALENDAR(DATE(2020,10,01),DATE(2020,10,10))

 

Then Build a Date Measure and build a Table visual by this Date Measure and other columns.

 

M.Date =
VAR _MAX =
    MAX ( Slicer[Date] )
VAR _MIN =
    MIN ( Slicer[Date] )
VAR _Select =
    CALCULATE (
        MAX ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] <= _MAX && 'Table'[Date] >= _MIN )
    )
VAR _Default =
    CALCULATE (
        MAX ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] = TODAY () )
    )
RETURN
    IF ( ISFILTERED ( Slicer[Date] ), _Select, _Default )

 

The Table visual will show you Today's value if you don't select slicer.

You can download the pbix file from this link: Set default date to today on date slicer

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

 

View solution in original post

6 REPLIES 6
miTutorials
Super User
Super User

The below tutorial will help in creating a slicer which will default to Today or Yesterday  and also let you choose custom dates.

 

Default Date to Today and Also custom select Dates 

v-rzhou-msft
Community Support
Community Support

Hi @Anonymous 

In addtion to Fowmy and  

 

Slicer = CALENDAR(DATE(2020,10,01),DATE(2020,10,10))

 

Then Build a Date Measure and build a Table visual by this Date Measure and other columns.

 

M.Date =
VAR _MAX =
    MAX ( Slicer[Date] )
VAR _MIN =
    MIN ( Slicer[Date] )
VAR _Select =
    CALCULATE (
        MAX ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] <= _MAX && 'Table'[Date] >= _MIN )
    )
VAR _Default =
    CALCULATE (
        MAX ( 'Table'[Date] ),
        FILTER ( 'Table', 'Table'[Date] = TODAY () )
    )
RETURN
    IF ( ISFILTERED ( Slicer[Date] ), _Select, _Default )

 

The Table visual will show you Today's value if you don't select slicer.

You can download the pbix file from this link: Set default date to today on date slicer

 

Best Regards,

Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. 

 

Hi @v-rzhou-msft !

Can you please share the pbix file?

I could not figure it out..

This might work a look too if using the date picker is an option
https://www.youtube.com/watch?v=VaJ10ilXp6Y

 

P_D_G_0-1602138213510.png

Best,

PDG

amitchandak
Super User
Super User

@Anonymous , There no direct way. You can create some flag and restrict the values, That is successful in case of single date of flag as slicer itself

 

Example

Date Type = SWITCH(TRUE(),'Date'[Date] >= =TODAY() -20 && 'Date'[Date] <=TODAY(),"Last Dates"
,'Date'[Date]&"")

 

Date Type = SWITCH(TRUE(),'Date'[Date]=max(Table[Date]),"Lastest Date"
,'Date'[Date]&"")

 

Fowmy
Super User
Super User

@Anonymous 


I do not think that is possible, however, you can search in the Ideas and vote for the same feature or create a new idea at https://ideas.powerbi.com/ideas/

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.