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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
AllenStuhr
New Member

Prior year YTD, QTD, and MTD calcs using a non-standard calander

Hi, 

 

I hope everyone is having a wonderful Wednesday! My firm uses a 445 calendar, and I am trying to perform YTD, QTD, & MTD calcs on prior years. I am able to return the proper prior year value per date; however, I am having trouble with the time intelligence calcs. Thank you so much for your help!

 

Sales: Net (A_PY_445) =
VAR CurrentDoW = SELECTEDVALUE( 'Date'[DoW#] )
VAR CurrentWeek445 = SELECTEDVALUE( 'Date'[Week#_445] )
VAR CurrentYear445 = SELECTEDVALUE( 'Date'[Year_445] )

RETURN
CALCULATE( [01_Sales: Net Daily (A_CY_ALL)] ,
    FILTER( ALL( 'Date' ) ,
    'Date'[DoW#] = CurrentDoW &&
    'Date'[Week#_445] = CurrentWeek445 &&
    'Date'[Year_445] = CurrentYear445 - 1 ) )

 

1 REPLY 1
amitchandak
Super User
Super User

@AllenStuhr , You have to follow this approach using start date of each period

 

you need a column based on the start period date or year period in you date table

Period Rank = RANKX(all(Period),Period[year period],,ASC,Dense)

 

Then measure
This Period = CALCULATE(sum('Table'[Qty]), FILTER(ALL(Period),Period[Period Rank]=max(Period[Period Rank])))
Last Period = CALCULATE(sum('Table'[Qty]), FILTER(ALL(Period),Period[Period Rank]=max(Period[Period Rank])-1))

 

Power BI Custom Period Till Date (PTD)- https://youtu.be/rQ3Z_LtxwQM

DAX Calendar - Standard Calendar, Non-Standard Calendar, 4-4-4 Calendar
https://www.youtube.com/watch?v=IsfCMzjKTQ0&t=145s

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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