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

Get inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.

Reply
rsbin
Super User
Super User

Week over Week Change

Good Afternoon,

Like many others, I am having issues getting my Week over Week Change to work properly. 
Have watched numerous videos, but have now turned myself into knots.  So reaching out to get myself untangled. 
Just need to get my APBalance_PriorWeek measure working, then I can proceed with %Change.  

Summary of Data Table:

Year-WeekNumMon Latest Date AgeCategory APBalance_Weekly
2025-07 2/16/2025 Current $3,830
2025-07 2/16/2025 30Days $2,672
2025-07 2/16/2025 60Days $1,366
2025-08 2/23/2025 Current $3,288
2025-08 2/23/2025 30Days $2,340
2025-08 2/23/2025 60Days $1,332
2025-09 3/2/2025 Current $3,021
2025-09 3/2/2025 30Days $2,976
2025-09 3/2/2025 60Days $548
2025-10 3/9/2025 Current $2,118
2025-10 3/9/2025 30Days $2,074
2025-10 3/9/2025 60Days $1,323
2025-11 3/12/2025 Current $2,181
2025-11 3/12/2025 30Days $2,032
2025-11 3/12/2025 60Days $1,349

My Measure is:

 

 

APBalance_Weekly = CALCULATE( SUM( APAging[Balance(,000)] ),
                         FILTER( DIM_Date, DIM_Date[Date] = MAX( DIM_Date[Date] )))

 

 

Just as a note my AP Balance file is updated Daily. So for the Current Week ( 2025-11) the balance is as of the latest date.

Year -Week and Latest Date are derived from DIM_Date table.

rsbin_0-1741892910472.png

Thanks in advance and Best Regards,

 

 

1 ACCEPTED SOLUTION
Deku
Solution Supplier
Solution Supplier

not pretty but should work

previousWeek = 
var maxdt = MAX( dates[Date] )
var maxdtPerWeek =
    CALCULATETABLE(
        ADDCOLUMNS(
            SUMMARIZE( dates, dates[Week No] )
            ,"@MaxDate", CALCULATE( MAX( dates[Date] ) )
        ),
        REMOVEFILTERS( dates )
        ,dates[Date] <= maxdt
    )
var prevWeek =
	INDEX(
		2,
		maxdtPerWeek
		,ORDERBY( [@MaxDate], desc )
	)
var prevWeekDate =
    SELECTCOLUMNS(
        prevWeek
        ,"@date", [@MaxDate]
    )
RETURN
CALCULATE( 
    SUM( 'Table'[balance] ),
    TREATAS( prevWeekDate, dates[Date] )
)

Deku_0-1741899784371.png

Deku_1-1741899807573.png

 

 

 


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

View solution in original post

3 REPLIES 3
Deku
Solution Supplier
Solution Supplier

not pretty but should work

previousWeek = 
var maxdt = MAX( dates[Date] )
var maxdtPerWeek =
    CALCULATETABLE(
        ADDCOLUMNS(
            SUMMARIZE( dates, dates[Week No] )
            ,"@MaxDate", CALCULATE( MAX( dates[Date] ) )
        ),
        REMOVEFILTERS( dates )
        ,dates[Date] <= maxdt
    )
var prevWeek =
	INDEX(
		2,
		maxdtPerWeek
		,ORDERBY( [@MaxDate], desc )
	)
var prevWeekDate =
    SELECTCOLUMNS(
        prevWeek
        ,"@date", [@MaxDate]
    )
RETURN
CALCULATE( 
    SUM( 'Table'[balance] ),
    TREATAS( prevWeekDate, dates[Date] )
)

Deku_0-1741899784371.png

Deku_1-1741899807573.png

 

 

 


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

@Deku ,

It appears to be working for me.  Will have to study in more detail to understand it, but it looks to be a solution I was after.

Thanks again and apologies for the delayed response.

@Deku ,

Thanks for the response.  Not sure if I will be able to attend to this today, but will give it a shot when I get the chance.

Kind Regards,

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

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

March2025 Carousel

Fabric Community Update - March 2025

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