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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
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.

Top Solution Authors