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
LeroyPaul
Helper I
Helper I

Slicer filter on N previous Year

Hello,

I would like to use a slicer on my year field to display the desired year and the 5 previous years.

According to the different solutions that I could find online, I created a 2nd table with years to filter my other table with the following measure (année means year in french) :

 

Mfilter =
VAR minselected =
SELECTEDVALUE('Year Table'[Année])-5
RETURN
VAR maxselected =
SELECTEDVALUE('Year Table'[Année])
RETURN
IF(AND(MAX('5 - Requêtes BO Consolidé'[Année d'octroi (projet)])>=minselected,MAX('5 - Requêtes BO Consolidé'[Année d'octroi (projet)])<=maxselected),1,0)

 

However the measure does not achieve what I want, I get the result below for the year 2021 selected (in Year Table):

 

Année d'octroi (projet)Mfilter
20150
20160
20170
20180
20190
20200
20210

 

Could you help me? (I specify that I am under Power BI 2020)

 

Thanks in advance !

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @LeroyPaul ,

 

Check below measure:

Measure = 
var start_ = SELECTEDVALUE('Year Table'[Année])-5
var end_ = SELECTEDVALUE('Year Table'[Année])
var date1 = SELECTEDVALUE('5 - Requêtes BO Consolidé'[Année d'octroi (projet)])
return
IF(date1>=start_&&date1<=end_,1,0)

Make sure there's no relationship between year table and fact table.

vjaywmsft_0-1666944263179.png

 

Best Regards,

Jay

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @LeroyPaul ,

 

Check below measure:

Measure = 
var start_ = SELECTEDVALUE('Year Table'[Année])-5
var end_ = SELECTEDVALUE('Year Table'[Année])
var date1 = SELECTEDVALUE('5 - Requêtes BO Consolidé'[Année d'octroi (projet)])
return
IF(date1>=start_&&date1<=end_,1,0)

Make sure there's no relationship between year table and fact table.

vjaywmsft_0-1666944263179.png

 

Best Regards,

Jay

Thank you very much, that's exactly it!

PVO3
Impactful Individual
Impactful Individual

This will problably help you.

There must be a more simple solution, I can't adapt the solution of the video to my problem

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

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 community update carousel

Fabric Community Update - June 2025

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