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
heidibb
Helper IV
Helper IV

How to get Last Year values

Hello,

I have academic data that we report in trimesters. I have a trimester sequence number and am successful in getting  last year's sequence number, but when I create my calculation to try and find last year's qty's, my value is showing blank. Not sure what I'm missing here.

 

StudentCount - TYCALCULATE(DISTINCTCOUNT('Cohort Metrics'[Student_SK]))

StudentCount - LYCALCULATE(DISTINCTCOUNT('Cohort Metrics'[Student_SK]), 'Cohort Metrics'[AcademicTrimesterSequenceNumber] = 'Cohort Metrics'[LY Trimester Sequence])
LY Trimester Sequence = 'Cohort Metrics'[AcademicTrimesterSequenceNumber] - 3
 
Output is in the picture:
 heidibb_0-1713904792241.png
1 REPLY 1
amitchandak
Super User
Super User

@heidibb , Are you using a date or Trimester  table with Year, Trimester Sequence (a table that join back to you table on Trimester key)

 

You can meausres like

 

This Period = CALCULATE(DISTINCTCOUNT( Registration[ID] ), FILTER(ALL(Semesters), Semesters[year]=max(Semesters[year])  && Semesters[Semesters]=max(Semesters[Semesters]) ))
Last Period = CALCULATE(DISTINCTCOUNT( Registration[ID] ), FILTER(ALL(Semesters),Semesters[year]=max(Semesters[year]) -1   && Semesters[Semesters]=max(Semesters[Semesters]) ))

 

 

here Semesters are numbers within year like 1,2,3 and reset every year

 

 

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.