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
themistoklis
Community Champion
Community Champion

MTD Previous Year on Pivot Table

Hello All,

 

Im trying to create a DAX formula for MTD for previous year.

I want to insert this formula to a Pivot Table in PowerBI.

 

I have used multiple formulas found from various websites but with no lack.

 

The Pivot table has one dimension for rows and the Year-Month (from Custom Calendar) as columns.

For current month im trying to create a formula for MTD previous year.

 

All formulas that i have created bring the total for same month from previous year.

For all completed months (e.g. Jan to Mar the data are correct).

 

Im wondering whether the use of PivotTable on PowerBI has to do with this issue.

 

At the moment im working on this formula:

CALCULATE(SUM('Invoices to Clients'[TurnOver]),
        DATESBETWEEN('Calendar'[Date],                    
            FIRSTDATE(DATEADD('Calendar'[Date],-12,MONTH)),   
            LASTDATE(DATEADD('Calendar'[Date],-12,MONTH))  
         )
     )

 

 

 

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@Greg_Deckler

Next time i will try to send a sample dataset.

 

@Ashish_Mathur

I tried this but with no luck. I am a bit surprised why this formula didnt work.

 

@v-yulgu-msft

I was the last person who replied to this thread and i provided the following formula. I used the EDATE function.

Turnover MTD (PY) = CALCULATE(SUM('Invoices to Clients'[TurnOver]),
        DATESBETWEEN('Calendar'[Date],                    
            FIRSTDATE(DATEADD('Calendar'[Date],-12,MONTH)),   
            IF(MONTH(MIN('Calendar'[Date])) = MONTH(TODAY()), EDATE(TODAY(),-12) , LASTDATE(DATEADD('Calendar'[Date],-12,MONTH))) 
         )
     )

View solution in original post

4 REPLIES 4
themistoklis
Community Champion
Community Champion

@Greg_Deckler

Next time i will try to send a sample dataset.

 

@Ashish_Mathur

I tried this but with no luck. I am a bit surprised why this formula didnt work.

 

@v-yulgu-msft

I was the last person who replied to this thread and i provided the following formula. I used the EDATE function.

Turnover MTD (PY) = CALCULATE(SUM('Invoices to Clients'[TurnOver]),
        DATESBETWEEN('Calendar'[Date],                    
            FIRSTDATE(DATEADD('Calendar'[Date],-12,MONTH)),   
            IF(MONTH(MIN('Calendar'[Date])) = MONTH(TODAY()), EDATE(TODAY(),-12) , LASTDATE(DATEADD('Calendar'[Date],-12,MONTH))) 
         )
     )
v-yulgu-msft
Employee
Employee

Hi @themistoklis,

 

Please check whether this thread helpful to your scenario: Compare MTD with previous period

 

Regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

Hi,

 

How about this one

 

=CALCULATE(SUM('Invoices to Clients'[TurnOver]),SAMEPERIODLASTYEAR(Calendar[Date]))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Greg_Deckler
Super User
Super User

Sample/example data please. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.