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
codyraptor
Resolver I
Resolver I

Calendar since Sept Update

Hey all.  I have a very simple Calendar Table connected to a date in my facts table.  Calendar table is built by using the built in function in Power BI.  I have had zero issues out of this in the past, but now my dates are not lining up for some reason.  My calendar table will show April, but the date from my facts table will show January?

 

This is the DAX formular I'm using...I'm getting a YTD amount as of 3 months ago.  The amount looks right..but it's removing the 1st 3 months out of my calendar instead of taking the last 3 months out.  Thoughts??  Never had this issue prior to the update.

 

Fee Collected 3 months ago = TOTALYTD(SUM(Dispatch[Fee Collected]),'Calendar'[Date],DATEADD('Calendar'[Date],-3,MONTH))

2 REPLIES 2
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @codyraptor,

 

The updates of Power BI Desktop are good. It's something wrong with your formula. The third parameter of TOTALYTD is a filter that would change the current context. 

Fee Collected 3 months ago =
TOTALYTD (
    SUM ( Dispatch[Fee Collected] ),
    'Calendar'[Date],
    DATEADD ( 'Calendar'[Date], -3, MONTH )
)

And it means moving back three months. Therefore, if these altered dates aren't in your Calendar, they will return blanks and hide in default.

 

1. In my test, the first date is 2007-01-01. The three months are missed. If we see the year 2008, all the months are there.

2. If we turn on "Show items with no data", we can see the missed months.

3. I tested it in Desktop June, it's the same.Calendar since Sept Update.jpg

 

 

 

 

 

 

 

 

 

 

 

 

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

I'm not sure I understand how the issue is the formula...or I'm not understanding how the formula is working.  What should happen is I should receive a year to date as of 3 months ago....so Jan - Jul.  The values I'm receiving are correct and the calculation is working...but the months in my calendar are removing the 1st 3 months rather than Aug - Oct.  My calendar does not have any missing dates...so I'm not quite sure I follow.

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.