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
Anonymous
Not applicable

previous same period data issue

Capture.PNG

 

I have date table also with formula and relationship master table 

Dates = CALENDAR (DATE (2014, 1, 1), DATE (2018, 12, 31))
 
But i still can't solve this issue. 
1 REPLY 1
OwenAuger
Super User
Super User

@Anonymous

 

It appears you want to create a measure summing interest_income for the YTD period one year ago.

 

I would suggest rewriting your measure like this:

A =
CALCULATE (
    SUM ( 'RP_001_GIME final_net_income'[interest_income] ),
    DATESYTD ( SAMEPERIODLASTYEAR ( Dates[Date] ) )
)

Once defined, the value of a variable is fixed, so in your original measure, the Step1 variable stored the YTD value, and this value didn't change in the subsequent CALCULATE.

 

Really the only way to apply two date shifts in sequence is to nest them as I have here, and you should have the actual SUM expression as the first argument of CALCULATE.

 

However, I can't explain why your measure returned blanks for years earlier than 2018. Just confirming that the Year colum is from the Dates table? If that's still a problem, please post back or post a sample pbix if possible.

 

Regards,

Owen


Owen Auger
Did I answer your question? Mark my post as a solution!
Blog
Twitter
LinkedIn

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.