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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
mady90
Frequent Visitor

Week over Week change

 

I have 2 tables, a date table that consists of the following fields:date, year, yearmonth, month, day, WeekNum The second table Consists of the following fields: Name, Cost, Date. The tables are linked by the date measure. I want a dax measure that can give me week over week change in cost. I already have a month over month change in cost measure but the same logic can't be applied here because "dateadd" does not give me "Week addition".

Week over Week calculation gives me wrong results.

Week Over Week = CALCULATE(
SUM ( UsageDetails[Cost] )
    - CALCULATE (
        SUM ( UsageDetails[Cost] ),
        FILTER (
            ALL ('Date' ),
            'Date'[Year] = YEAR( NOW() )
                && 'Date'[Week Number]
                    = MAX ( 'Date'[Week Number] ) - 1
                && 'Date'[Week Day] = MAX ( 'Date'[Week Day] )
        )
    ))
1 ACCEPTED SOLUTION
mady90
Frequent Visitor

Just resolved the issue. 

Showing the dax measure for week over week change(In case it helps someone else):

Week Over Week = 
VAR todaycost =CALCULATE(SUM(UsageDetails[Cost]),DATEADD('Date'[Date],0,DAY))
   
VAR LastWeek =
    CALCULATE (
        SUM ( UsageDetails[Cost] ),
        DATEADD(  'Date'[Date],-7, DAY)
    )
RETURN
   todaycost-LastWeek

View solution in original post

2 REPLIES 2
mady90
Frequent Visitor

Just resolved the issue. 

Showing the dax measure for week over week change(In case it helps someone else):

Week Over Week = 
VAR todaycost =CALCULATE(SUM(UsageDetails[Cost]),DATEADD('Date'[Date],0,DAY))
   
VAR LastWeek =
    CALCULATE (
        SUM ( UsageDetails[Cost] ),
        DATEADD(  'Date'[Date],-7, DAY)
    )
RETURN
   todaycost-LastWeek
Greg_Deckler
Community Champion
Community Champion

Tough to verify without sample data. 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

 

But, that being said, I would suggest moving your MAX('Date'[Week Number]) and MAX('Date'[Week Day]) to the beginning of your formula as VAR statements. The likely issue is that since you are calculating those within a block that includes an ALL statement, you are likely getting 52/53 for your Week Number and 6/7 for your Week Day every time. You need to get those outside of an ALL block.



Follow on LinkedIn
@ 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!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.