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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
D_PBI
Post Partisan
Post Partisan

How to have the last five years checked in a slicer visual as default but still show all the years?

Hi,
I have a slicer visual (vertical list) that contains each year in my model. It currently dates from 1960 to 2055 and so each year between those dates is available to check on the slicer.
Is there a way where I can check the boxes for the current year and four previous years (i.e. 2020 - 2024) but still have all the other years showing but just unchecked?  And as next year (2025) comes around, the slicer visual will default to checking only the years 2021-2025?
Thanks.


1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @D_PBI 

 

I have carefully considered the method you envisioned, and found that it is not feasible, and I can provide you with an alternative method

 

First, I created the following table

vjialongymsft_0-1704248759193.png

 

 

You can then construct your slicer using the following calculated columns

 

IsSelectedYear =

IF(

    YEAR(TODAY()) - 'Table'[date].[Year] <= 4 && YEAR(TODAY()) - 'Table'[date].[Year] >= 0,

    "Selected",

    "Not Selected"

)

 

This formula can filter data from five years based on your current time

 

This is the result you want

vjialongymsft_1-1704248759195.png

 

 

 

 

Best Regards,

Jayleny

 

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

5 REPLIES 5
Anonymous
Not applicable

Hi @D_PBI 

 

I have carefully considered the method you envisioned, and found that it is not feasible, and I can provide you with an alternative method

 

First, I created the following table

vjialongymsft_0-1704248759193.png

 

 

You can then construct your slicer using the following calculated columns

 

IsSelectedYear =

IF(

    YEAR(TODAY()) - 'Table'[date].[Year] <= 4 && YEAR(TODAY()) - 'Table'[date].[Year] >= 0,

    "Selected",

    "Not Selected"

)

 

This formula can filter data from five years based on your current time

 

This is the result you want

vjialongymsft_1-1704248759195.png

 

 

 

 

Best Regards,

Jayleny

 

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

@Anonymous - thank you for your efforts but that isn't the end result I was hoping for. I also need all the other years present in the slicer visual but just unchecked.

Anonymous
Not applicable

 Hi @D_PBI 

 

The PBIX file I provided contains unchecked years, but I used a filter to hide them, and if you want to show all the years just unchecked, you can also drag the year field into the slicer.

 

This is the result you want.

 

vjialongymsft_0-1704331824416.png

 

 

 

 

Best Regards,

Jayleny

 

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

@Anonymous  Thanks for your follow up. Apologies, I didn't fully view your .pbix file the first time around. I see what you've done now. I guess by checking the 'Selected' parent chechbox, as each year turns the current year will automatically be checked as it falls within the 'Selected' year range.

lukiz84
Memorable Member
Memorable Member

not possible.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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