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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have 2 tables.
The First with the calendar of the year (Calendario)
The Second with daily assistance. (Asistencia)
As shown below
I need to add a column to the attendance table that shows the previous average of the last 3 weeks (excluding the day) according to the day as for example
I did this Dax formula but only the attendance of the day and I do not know how to add the filter per day
Prom Anterior Diario = CALCULATE(AVERAGEX(Asistencia;Asistencia[Asistencia]);DATESBETWEEN(Calendario[Fecha];DATEADD(Asistencia[Fecha];-21;DAY);DATEADD(ResumenDiario[Fecha];-1;DAY))
Hi @jcabeza,
Please use the below DAX
Prom sAnterior Diario = CALCULATE(AVERAGEX(Asistencia,Asistencia[Asistencia]),DATESBETWEEN(Calendario[Fecha],DATEADD(Asistencia[Fecha],-21,DAY),DATEADD(Asistencia[Fecha],-1,DAY)))
I have got the below result from this DAX
If this helped you, please mark this post as an accepted solution and like to give KUDOS .
Regards,
Affan
It's not the solution, but thanks
Hi @jcabeza
Can you please share what issue you got with this measure? What result does this show in your data?