Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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 - TY = CALCULATE(DISTINCTCOUNT('Cohort Metrics'[Student_SK]))
@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
User | Count |
---|---|
94 | |
92 | |
84 | |
83 | |
49 |
User | Count |
---|---|
150 | |
146 | |
112 | |
73 | |
56 |