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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Custom default date on date range slicer

Hi,

 

I want to show default date range slicer for eg - if the max and min date in the table is 1st Jan 2022 and 19th April 2022 then I want to default the slicer to show latest 1 week date range ie from 13th April 2022 - 19th April 2022 but the users should be able to slide the date to any date between 1st Jan 2022 - 19th April 2022.

 

shtiwary_0-1650359493984.png

 

Is it possible to do something like this in date range?

 

Thanks

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

I failed to add a filter on the date range slicer.

I'm afraid it's a not supported feature currently.

Measure = 
var _date = SELECTEDVALUE('calendar'[Date])
var _max = MAXX(ALLSELECTED('calendar'),'calendar'[Date])
return
SWITCH(SELECTEDVALUE(default[default]),"latest_week",IF(_date<=_max&&_date>_max-7,1,0),"all",1)

vjaywmsft_0-1650616071596.png

vjaywmsft_1-1650616109949.png

You may consider to submit this as an idea.

https://ideas.powerbi.com/ 

 

Best Regards,

Jay

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @Anonymous ,

 

I failed to add a filter on the date range slicer.

I'm afraid it's a not supported feature currently.

Measure = 
var _date = SELECTEDVALUE('calendar'[Date])
var _max = MAXX(ALLSELECTED('calendar'),'calendar'[Date])
return
SWITCH(SELECTEDVALUE(default[default]),"latest_week",IF(_date<=_max&&_date>_max-7,1,0),"all",1)

vjaywmsft_0-1650616071596.png

vjaywmsft_1-1650616109949.png

You may consider to submit this as an idea.

https://ideas.powerbi.com/ 

 

Best Regards,

Jay

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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