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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Filter with datesinperiod function

Hi,

 

I have this DAX:

#Eventos 12 meses atras =
CALCULATE (
        [#Eventos];
        DATESINPERIOD(Semana[FECHA].[Date];LASTDATE('Eventos OW'[Fecha Fin Operación]);-12;MONTH)
        )
 
But the 12 months calculation is affected by external filters, how can I solved this?
 
Thanks
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi,

I did not receive any response but I got the solution by my own:

 

First I calculate the [#Eventos] by months using a column in the calendar table with YYYY-MM, then apply this DAX:

 

#Eventos 12 meses atras =
CALCULATE (
        [#Eventos];
        FILTER(ALL(Semana[FECHA].[Date]);LASTDATE('Eventos OW'[Fecha Fin Operación]));
        DATESINPERIOD(Semana[FECHA].[Date];LASTDATE('Eventos OW'[Fecha Fin Operación]);-12;MONTH)
        )
Greetings

View solution in original post

3 REPLIES 3
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,

Have you solved your problem?

If you have solved your problem, could you please share the solution or always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.

If you still need help, please share some data sample and your desired output so that we could help further on it.

Best  Regards,

Cherry

 

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi,

I did not receive any response but I got the solution by my own:

 

First I calculate the [#Eventos] by months using a column in the calendar table with YYYY-MM, then apply this DAX:

 

#Eventos 12 meses atras =
CALCULATE (
        [#Eventos];
        FILTER(ALL(Semana[FECHA].[Date]);LASTDATE('Eventos OW'[Fecha Fin Operación]));
        DATESINPERIOD(Semana[FECHA].[Date];LASTDATE('Eventos OW'[Fecha Fin Operación]);-12;MONTH)
        )
Greetings
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @Anonymous ,


#Eventos 12 meses atras =
CALCULATE (
        [#Eventos];
        DATESINPERIOD(Semana[FECHA].[Date];LASTDATE('Eventos OW'[Fecha Fin Operación]);-12;MONTH)
        )
 
But the 12 months calculation is affected by external filters, how can I solved this

 

What is the exteranl filter?

 

If it is convenient, could you share your data sample which could reproduce your scenario and your desired output so that we could help further on it.

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.