cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
ejzimmerman
Regular Visitor

Year over Year Cost Calculation

Hi,

 

For my report, I am trying to report out on the year over year cost increase, and my source data is in a similar format to the data shown in the table below. I am trying to create a measure that will return the cost for the prior year/month/day etc. that varies based on the table or chart. I've looked around the other posts on this topic, but I can't seem to get them to work. I show a sample dataset then what the output should look like when summing by year and supplier.

 

Sample Dataset:

DateMonthYearIdentifer 1SupplierCost
1/1/20211/1/202120211A120
1/2/20211/1/202120212A110
1/3/20211/1/202120213B100
1/4/20211/1/202120214B90
1/5/20211/1/202120215C80
1/6/20211/1/202120216C70
1/1/20201/1/202020201A60
1/2/20201/1/202020202A50
1/3/20201/1/202020203B40

 

Output:

YearSupplierCostPrior Year CostTrend
2021A230110120
2021B19040150
2021C1500150
2020A1100110
2020B40040
2020C000
1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @ejzimmerman 

 

Try these measures :

Prior Year = 
VAR _LY =
    CALCULATE (
        SUM ( 'Table'[Cost] ),
        ALLEXCEPT ( 'Table', 'Table'[Supplier] ),
        PREVIOUSYEAR ( 'Table'[Date] )
    )
RETURN
    IF ( ISBLANK ( _LY ), 0, _LY )
Cost Trend = 
SUM ( 'Table'[Cost] ) - [Prior Year]

 

Output:

VahidDM_0-1631343405672.png

 

Download the sample file: https://gofile.io/d/EtW8Ls

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos 🙏!!

View solution in original post

2 REPLIES 2
ejzimmerman
Regular Visitor

Thank you! That solved my problem. Really appreciate the help.

VahidDM
Super User
Super User

Hi @ejzimmerman 

 

Try these measures :

Prior Year = 
VAR _LY =
    CALCULATE (
        SUM ( 'Table'[Cost] ),
        ALLEXCEPT ( 'Table', 'Table'[Supplier] ),
        PREVIOUSYEAR ( 'Table'[Date] )
    )
RETURN
    IF ( ISBLANK ( _LY ), 0, _LY )
Cost Trend = 
SUM ( 'Table'[Cost] ) - [Prior Year]

 

Output:

VahidDM_0-1631343405672.png

 

Download the sample file: https://gofile.io/d/EtW8Ls

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos 🙏!!

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors