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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
DomA001
Regular Visitor

DAX HELP, show last 12 periods based on slicer selections

Hi,

 

I want to show previous 12 "periods" based on slicer selections. So, for example if I select "Period" = 9 and "Year" = 2020 I want it to show me 2019 P9, 2019 P10, 2019 P11, 2019 P12, 2020 P1, 2020 P2, 2020 P3, 2020 P4, 2020 P5, 2020 P6, 2020 P7, 2020 P8. 

 

What's the best way to implent this? 

2 REPLIES 2
wdx223_Daniel
Super User
Super User

i think the best way is to set up your date table, then use time intellegence function
amitchandak
Super User
Super User

@DomA001 , Ideally these Period P1 , p2 should p01 and p02 .

Then you can have rank on YYYYPP - 2020P01 And have separate period year table

 

Period Rank = RANKX(all('Date'),'Date'[Year Period ],,ASC,Dense)
This Period = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Period Rank]=max('Date'[Period Rank])))
Last Period = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Period Rank]=max('Date'[Period Rank])-1))
Last year Period = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Period Rank]=(max('Date'[Period Rank]) -12)))

 

last 12 month = CALCULATE(sum('order'[Qty]), FILTER(ALL('Date'),'Date'[Period Rank]>=(max('Date'[Period Rank]) -12) && 'Date'[Period Rank]<=max('Date'[Period Rank])))

 

But this might group the things together, refer thsi video for the approch

https://www.youtube.com/watch?v=duMSovyosXE

 

Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors