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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
mthomas1973
Helper I
Helper I

YTD and SAMEPERIODLASTYEAR

Hello all. I hope someone can help. 

 

I am dipping my toes into time intelligent function for the first time and have a result I can't understand. 

 

I have a couple of measures: 

 

ytd actual = TOTALYTD([Actual],'oa FactPeriodEndBalance'[PeriodEndDate],"31/03")
and
py actual = calculate([Actual],SAMEPERIODLASTYEAR('oa FactPeriodEndBalance'[PeriodEndDate]))
 
I then use these in table that looks like this 
 mthomas1973_3-1634030894051.png

 

Everything works great (there are also other sections, all of which behave as I expected). The oddity is that Fair Value Adj figure. The amount sits in the period 31/3/2021 so should be in the previous financial year not this one?

 

It is worth noting that the total (2,089K) in the matrix ignores that Fair Value amount and is the sum of sales and interest only.

 

Am I missing something obvious? Any help is appreciated.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@mthomas1973 , prefer to use date table

 

ytd actual = TOTALYTD([Actual],'Date'[Date],"31/03")

 

Last ytd actual = TOTALYTD([Actual],dateadd('Date'[Date],-1, year) ,"31/03")

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@mthomas1973 , prefer to use date table

 

ytd actual = TOTALYTD([Actual],'Date'[Date],"31/03")

 

Last ytd actual = TOTALYTD([Actual],dateadd('Date'[Date],-1, year) ,"31/03")

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

That's great thank you. Yes, seems to be behaving more normally now -- really appreciate the steer 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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