Reply
Powerbyosh
Helper I
Helper I

5 years rolling data based on slicer (year) selection

Hi All,

 

I have a requirement that needs to display 5 years of data if selected YTD, 12 months of data if selected MTD, selected month && 4 quarters of data if selected QTD.

 

 How do I get 5 years of data?

 

Please drop me your suggestions or answers.

2 REPLIES 2
v-yangliu-msft
Community Support
Community Support

Hi  @Powerbyosh ,

 

Here are the steps you can follow:

1. Enter – Create a table.

vyangliumsft_0-1684140988503.png

2. Create measure.

Flag =
var _select=SELECTEDVALUE('Table2'[Group])
var _today=TODAY()
return
SWITCH(
    TRUE(),
    MAX('Table2'[Group])="YTD" && MAX('Table'[Date]) >= DATE(YEAR(_today)-5,MONTH(_today),DAY(_today))&& MAX('Table'[Date]) <= _today,1,
    MAX('Table2'[Group])="MTD" && MAX('Table'[Date]) >= DATE(YEAR(_today)-1,MONTH(_today),DAY(_today))&& MAX('Table'[Date]) <= _today,1,
    MAX('Table2'[Group])="QTD" && MAX('Table'[Date]) >= DATE(YEAR(_today),MONTH(_today)-4,DAY(_today))&& MAX('Table'[Date]) <= _today,1,0
)
Measure =
SUMX(
    FILTER(ALLSELECTED('Table'),'Table'[Date]<=MAX('Table'[Date])),[rand])

3. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1684140988505.png

4. Result:

vyangliumsft_2-1684141042574.png

 

Best Regards,

Liu Yang

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

Thank you. It worked

avatar user

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)