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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.