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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
kasife
Helper V
Helper V

Comparing months with the same selected period

Hi people,

 

I'm having a little trouble getting the following result: I'd like to get the amount of leads for the current month, the previous month and the month before the previous one according to the period I select. I want to know what was the amount in the same period in these 3 months. How could I do this?
Here is the result I would like to get,

kasife_0-1690083186127.png

I am using the following measure and it is not working

 

    var atual = CALCULATE(DISTINCTCOUNT(_leads[Id]),_leads[Produtos com nome do Reaal]<>BLANK())
    var delta = DATEDIFF(max(d_calendario[Date]), min(d_calendario[Date]), MONTH)

    RETURN
  CALCULATE(
            atual,
            DATEADD(d_calendario_aux[Date],delta-1, MONTH)                    
             )
   

 

 

Here is my PBIX attached:

https://ufile.io/nl9o9xon

1 ACCEPTED SOLUTION
aj1973
Community Champion
Community Champion

Hi

DATEADD is meant to give the result in the selected date slicer. use these 3 dax 

atual = CALCULATE(DISTINCTCOUNT(_leads[Id]),_leads[Produtos com nome do Reaal]<>BLANK())
Atual -1 = CALCULATE([atual] , DATEADD(d_calendario[Date] , -1 , MONTH))

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

View solution in original post

5 REPLIES 5
aj1973
Community Champion
Community Champion

Hi @kasife 

Is this what you want to see?

aj1973_0-1690124679368.png

 

aj1973_0-1690127017517.png

 

 

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

@aj1973 thank you so muck for help.

Id like to see this:

kasife_0-1690136562172.png

I'm going to select periods, for example, from the 15th to the 20th of July, so I'll have the result from the 15th to the 20th of June and May as well.

Instead of using the calendar month, I would like to use dates

aj1973
Community Champion
Community Champion

Hi

DATEADD is meant to give the result in the selected date slicer. use these 3 dax 

atual = CALCULATE(DISTINCTCOUNT(_leads[Id]),_leads[Produtos com nome do Reaal]<>BLANK())
Atual -1 = CALCULATE([atual] , DATEADD(d_calendario[Date] , -1 , MONTH))

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

@aj1973 thank you so much. Its working.

aj1973
Community Champion
Community Champion

Welcome

Regards
Amine Jerbi

If I answered your question, please mark this thread as accepted
and you can follow me on
My Website, LinkedIn and Facebook

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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