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
mmh
Helper I
Helper I

Showing Max Value in Matrix excluding last month

Hi, 

I would like show in MAX value in martix excluding last month. 

I have a measure as 

CALCULATE(
    Max(tables[sale_sum]), 
    FILTER(
        tables, 
        tables[date] < DATE(YEAR(MAX(tables[date])), MONTH(MAX(tables[date])), 1)
    )
)
But showing only one month exlcuding last month. I.e in matric row for customer account, column YearMonth and value for MaxValue

Thanks
1 ACCEPTED SOLUTION
mmh
Helper I
Helper I

Hi @tamerj1  thanks for your reply. but it doesnt work. Anyway there is a function 

CLOSINGBALANCEMONTH and it works with this

View solution in original post

2 REPLIES 2
mmh
Helper I
Helper I

Hi @tamerj1  thanks for your reply. but it doesnt work. Anyway there is a function 

CLOSINGBALANCEMONTH and it works with this
tamerj1
Super User
Super User

Hi @mmh 

not 100% sure what the requirement is but please try

MaxValue =
MAXX (
FILTER (
SUMMARIZE ( tables, tables[Customer Account], tables[YearMonth] ),
tables[YearMonth] < MAX ( tables[YearMonth] )
),
CALCULATE ( SUM ( tables[sale_sum] ) )
)

Helpful resources

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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.