cancel
Showing results for 
Search instead for 
Did you mean: 
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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors
Top Kudoed Authors