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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Find max value based on another column

Hi Experts

 

i am trying to find the maximum value based on a second column , cannot see the error in my formula...

 

Measure = CALCULATE(MAX(Client_Summary_[ManagementReferralsF2F]),FILTER(Client_Summary_,Client_Summary_[Division]=EARLIER(Client_Summary_[Division])))

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

In a MEASURE, typically you can not use EARLIER

 

Consider replacing EARLIER with SELECTEDVALUE

View solution in original post

5 REPLIES 5
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

In a MEASURE, typically you can not use EARLIER

 

Consider replacing EARLIER with SELECTEDVALUE

Anonymous
Not applicable

Hi Zubair

 

Slight change: i want to find the max value filtered on ClientName first then based on division next... I have a syn'd the fliter show the data show be for client ABC only......the desireed result Capture.PNGshould be 83.

@Anonymous

 

Try with

 

=
CALCULATE (
    MAX ( Client_Summary_[ManagementReferralsF2F] ),
    ALLEXCEPT (
        Client_Summary_,
        Client_Summary_[Division],
        Client_Summary_[ClientName]
    )
)
Anonymous
Not applicable

Zubiar

 

I managed to solve the measure. Thanks

Anonymous
Not applicable

Hi Zubair

 

Slight change: i want to find the max value filtered on ClientName first then based on division next... I have a syn'd the fliter show the data show be for client ABC only......the desireed result should be 83.Capture.PNG

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors