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.
Hola
Tengo datos académicos que reportamos en trimestres. Tengo un número de secuencia trimestral y tengo éxito en obtener el número de secuencia del año pasado, pero cuando creo mi cálculo para tratar de encontrar la cantidad del año pasado, mi valor se muestra en blanco. No estoy seguro de lo que me estoy perdiendo aquí.
StudentCount - TY = CALCULAR(DISTINCTCOUNT('Métricas de cohorte'[Student_SK]))
@heidibb , ¿Está utilizando una tabla de fecha o trimestre con año, secuencia de trimestres (una tabla que se une a su tabla en la clave de trimestres)
Puedes medir como
Este período = CALCULATE(DISTINCTCOUNT( Registro[ID] ), FILTER(ALL(Semestres), Semestres[año]=max(Semestres[año]) && Semestres[Semestres]=max(Semestres[Semestres]))
Último período = CALCULATE(DISTINCTCOUNT( Registro[ID] ), FILTER(ALL(Semestres),Semestres[año]=max(Semestres[año]) -1 && Semestres[Semestres]=max(Semestres[Semestres]))
aquí los semestres son números dentro del año como 1,2,3 y se reinician cada año
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Check out the November 2024 Power BI update to learn about new features.