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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
jcabeza
Frequent Visitor

Create a column that contains the previous average of days

I have 2 tables.
The First with the calendar of the year (Calendario)
The Second with daily assistance. (Asistencia)
As shown below

                 Calendario.jpg           Asistencia.png

 

 

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

 

Resultado Esperado.jpg

 

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))

3 REPLIES 3
affan
Solution Sage
Solution Sage

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

Asistencia.png

 

 

 

 

If this helped you, please mark this post as an accepted solution and like to give KUDOS .

 

Regards,

Affan

jcabeza
Frequent Visitor

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?

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors