This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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) :
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 |
| 2015 | 0 |
| 2016 | 0 |
| 2017 | 0 |
| 2018 | 0 |
| 2019 | 0 |
| 2020 | 0 |
| 2021 | 0 |
Could you help me? (I specify that I am under Power BI 2020)
Thanks in advance !
Solved! Go to Solution.
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.
Best Regards,
Jay
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.
Best Regards,
Jay
Thank you very much, that's exactly it!
There must be a more simple solution, I can't adapt the solution of the video to my problem
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 31 | |
| 25 | |
| 21 | |
| 18 | |
| 17 |
| User | Count |
|---|---|
| 62 | |
| 34 | |
| 33 | |
| 25 | |
| 24 |