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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Prabha45
Helper III
Helper III

DAX dynamically

Hi Everyone,


I'm having data from 2015 to till date and the user wants to see only the last 3 years data.. I mean if the user opens the report today, the visual should show data from 2020 to 2022 Oct. If the user opens in 2023 March it should show data from 2021 to 2023 March. The data should change dynamically.

Thank you.

1 ACCEPTED SOLUTION
v-yueyunzh-msft
Community Support
Community Support

Hi , @Prabha45 

Here are the steps you can refer to :

(1)This is my test data:

Table = CALENDAR( DATE(2008,2,2) , DATE(2023,6,7))

(2)We can create a measure:

Measure = var _date = SELECTEDVALUE( 'Table'[Date])
var _last3_year = YEAR( TODAY())-3
return
IF(_date <=TODAY() && _date >= DATE(_last3_year ,1, 1) ,1 ,0)

(3)Then we put the measure in the "Filter on this visual" and we can configure it and then we can meet your need:

vyueyunzhmsft_0-1664853000356.png

 

Best Regards,

Aniya Zhang

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

2 REPLIES 2
v-yueyunzh-msft
Community Support
Community Support

Hi , @Prabha45 

Here are the steps you can refer to :

(1)This is my test data:

Table = CALENDAR( DATE(2008,2,2) , DATE(2023,6,7))

(2)We can create a measure:

Measure = var _date = SELECTEDVALUE( 'Table'[Date])
var _last3_year = YEAR( TODAY())-3
return
IF(_date <=TODAY() && _date >= DATE(_last3_year ,1, 1) ,1 ,0)

(3)Then we put the measure in the "Filter on this visual" and we can configure it and then we can meet your need:

vyueyunzhmsft_0-1664853000356.png

 

Best Regards,

Aniya Zhang

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

 

Greg_Deckler
Community Champion
Community Champion

@Prabha45 You could implement in data refresh to just pull the last 3 years. Alternatively, you could write a Complex Selector like this:

Selector Measure = 
  VAR __Today = TODAY()
  VAR __MinDate = DATE(YEAR(__Today)-3,MONTH(__Today),DAY(__Today))
RETURN
  IF(MAX('Table'[Date]) >= __MinDate,1,0)


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors