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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
petercowen
Frequent Visitor

Converting SUMIF latest v previous dataset in same table

I need some help converting a simple excel sumif in to the correct DAX equation

 

I have a single table that contains multiple weeks worth of data and I want to be able to compare the week's quantity versus last week's, but I cannot get it to pull the data in.  

 

Capture.PNG

 

Columns A to C are as per the data sets loaded and, if it was Excel, I'd create column D to make them unique.  The equation below is how I'd get the Last Week data to show, but I cannot convert this to a DAX formula that works

 

=SUMIF(D:D,A2&(B2-1),C:C)

 

 

1 ACCEPTED SOLUTION
v-easonf-msft
Community Support
Community Support

Hi, @petercowen 

According to your description, you can try measure like that:

Last week Qty =
CALCULATE (
    SUM ( 'Table'[Qty] ),
    FILTER (
        ALLEXCEPT ( 'Table', 'Table'[Material] ),
        'Table'[Week No]
            = MAX ( 'Table'[Week No] ) - 1
    )
)

Here is a sample I made:

Converting-SUMIF-latest-v-previous-dataset-in-same-table.png

url: https://wicren-my.sharepoint.com/:u:/g/personal/michael_wicren_onmicrosoft_com/EQ7_I60lHOFFg97kdRK4n...

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi, @petercowen 

According to your description, you can try measure like that:

Last week Qty =
CALCULATE (
    SUM ( 'Table'[Qty] ),
    FILTER (
        ALLEXCEPT ( 'Table', 'Table'[Material] ),
        'Table'[Week No]
            = MAX ( 'Table'[Week No] ) - 1
    )
)

Here is a sample I made:

Converting-SUMIF-latest-v-previous-dataset-in-same-table.png

url: https://wicren-my.sharepoint.com/:u:/g/personal/michael_wicren_onmicrosoft_com/EQ7_I60lHOFFg97kdRK4n...

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.