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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
manoj_0911
Post Patron
Post Patron

How to Remove "Next" Option from Relative Date Slicer?

Hello,

 

I'm using the Relative Date Slicer in Power BI and would like to restrict users from selecting future dates (i.e., remove the "Next" option). Is there a way to disable or remove the "Next" option in the slicer so that only past and current periods can be selected?

 

If this isn't directly possible, are there any workarounds I can use to prevent users from selecting future dates?

 

Thank you in advance for your help!

 

Best regards,
Manoj Prabhakar

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @manoj_0911 -In Power BI, there's no direct way to disable or remove the "Next" option from the Relative Date Slicer.

 

Add a new column to your date table that checks whether a date is in the past or the current day and flags future dates.

IsFutureDate = IF(Dates[Date] > TODAY(), 1, 0)

 

In your report, apply a filter on the date slicer or table visual to exclude dates where IsFutureDate=1.

Add the Relative Date Slicer: You can now use the Relative Date Slicer, but the filter will automatically prevent future dates from being selected by users.

 

or You can apply page-level filters to restrict the available date range to only past and current dates Filter: Dates[Date] <= TODAY()

 

check the above alternative approaches suggested at page level filter and flag condition

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

1 REPLY 1
rajendraongole1
Super User
Super User

Hi @manoj_0911 -In Power BI, there's no direct way to disable or remove the "Next" option from the Relative Date Slicer.

 

Add a new column to your date table that checks whether a date is in the past or the current day and flags future dates.

IsFutureDate = IF(Dates[Date] > TODAY(), 1, 0)

 

In your report, apply a filter on the date slicer or table visual to exclude dates where IsFutureDate=1.

Add the Relative Date Slicer: You can now use the Relative Date Slicer, but the filter will automatically prevent future dates from being selected by users.

 

or You can apply page-level filters to restrict the available date range to only past and current dates Filter: Dates[Date] <= TODAY()

 

check the above alternative approaches suggested at page level filter and flag condition

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors