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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.