Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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])))
Solved! Go to Solution.
@Anonymous
In a MEASURE, typically you can not use EARLIER
Consider replacing EARLIER with SELECTEDVALUE
@Anonymous
In a MEASURE, typically you can not use EARLIER
Consider replacing EARLIER with SELECTEDVALUE
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.
@Anonymous
Try with
=
CALCULATE (
MAX ( Client_Summary_[ManagementReferralsF2F] ),
ALLEXCEPT (
Client_Summary_,
Client_Summary_[Division],
Client_Summary_[ClientName]
)
)
Zubiar
I managed to solve the measure. Thanks
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |