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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Exclude last month in calculation

Hi,

 

I need to create a measure that calculates total sales excluding last month. So I used this formula:

  

CALCULATE(
    SUM(Sales[sale_sum]); 
    FILTER(
        Sales; 
        Sales[date] < DATE(YEAR(MAX(Sales[date])); MONTH(MAX(Sales[date])); 1)
    )
)

It actually works but when I try to use the measure in chart I don't see anything if I drill down to months.

 

Any help appreciated. Thanks.

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

your measure calculates last month for a given filter context, so if you go to month granularity it only considers that single month (and axcludes it)
this measure will look at the overall last month

VAR ExcludedLastDate = CALCULATE(MAX(Sales[date]), ALL(Sales))
RETURN
CALCULATE(
    SUM(Sales[sale_sum]); 
    FILTER(
        Sales; 
        Sales[date] < DATE(YEAR(ExcludedLastDate); MONTH(ExcludedLastDate)); 1)
    )
)


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

1 REPLY 1
Stachu
Community Champion
Community Champion

your measure calculates last month for a given filter context, so if you go to month granularity it only considers that single month (and axcludes it)
this measure will look at the overall last month

VAR ExcludedLastDate = CALCULATE(MAX(Sales[date]), ALL(Sales))
RETURN
CALCULATE(
    SUM(Sales[sale_sum]); 
    FILTER(
        Sales; 
        Sales[date] < DATE(YEAR(ExcludedLastDate); MONTH(ExcludedLastDate)); 1)
    )
)


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors