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
loti
New Member

Bizzard Behavior for YTD calcuation

Using a simple model to illustrate the problem. The model consists of two tables

  • a date table 
  • a fact table
 
Date Table
In addition to the date, there is also a boolean column indicating whether that day is a weekend (I know the value is actual wrong, but it does affect the illustration)
 
Fact Table
 
Now if I define a YTD measure as 
 
YTD = CALCULATE(
	SUM('fact'[value]),
	DATESYTD(dim_date[Date])
)

I got the following incorrect results for YTD.

 

Given there are16 rows with that have a date that is label as a weekend as well as fact that all of them falls in the same year, I expect the `YTD` and `value`to be identical in the above.

 

Interesting enough, if I slightly change the DAX by using the `dim_date[Date].[Date]` instead of just `dim_date[Date]`, everything just works as expected.

YTD = CALCULATE(
	SUM('fact'[value]),
	DATESYTD(dim_date[Date].[Date])
)

I could figure out the logic behind all this. Can anyone help to explain what is actually going on here?

 

The example pbix file is here:

https://drive.google.com/open?id=1y3ndL7yDE7T4x7Z2bPhMsa-NHRgGzYj0

 

Thanks  

1 REPLY 1
Greg_Deckler
Super User
Super User

See if my Time Intelligence the Hard Way provides a different way of accomplishing what you are going for.

https://community.powerbi.com/t5/Quick-Measures-Gallery/Time-Intelligence-quot-The-Hard-Way-quot-TIT...


@ 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!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.