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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Table showing running total up until last Tuesday vs this week.

Hi all!

 

I wanted to show last week vs this week for running totals.

 

I've created a custom 'Date' table that will contain all days.

 

measure_running_total_this_week =
CALCULATE (
    SUM ( data_table[net_quantity] ),
    FILTER (
        ALL ( 'Date' ),
        ISONORAFTER ( 'Date'[Date], MAX ( 'Date'[Date] )DESC )
    )
)
 
1. How do I modify the formula above to get the running total SUM up until last week?
2. How do get the running total up until last week TUESDAY?
 
I assume I have to modify the filtered table in RED but I can only provide a table as the parameter.
Or do I modify the GREEN line and filter for MAX date - 1 week?
 
My goal is to show a table with LAST WEEK vs THIS WEEK for running total.
 
 
 
1 REPLY 1
Anonymous
Not applicable

I think I've got it now.

 

To get last week's SUM (for Tuesday), I performed the following:

measure_running_total_last_week  =
VAR someDayLastWeek =
    TODAY () - 7
VAR modDate =
    MOD ( someDayLastWeek, 7 )
VAR lastTuesday = someDayLastWeek - modDate + 3
RETURN
    CALCULATE (
        SUM ( data_table[net_quantity] ),
        FILTER ( ALL ( 'Date' ), ISONORAFTER ( 'Date'[Date], lastTuesday, DESC ) )
    )

If there is a better way of doing this, please let me know. Thanks all!

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

Check out the November 2024 Power BI update to learn about new features.

Top Solution Authors