Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!