Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
| Itemid | Bid($) | BidderID |
| A | 10 | 1 |
| A | 12 | 2 |
| A | 14 | 3 |
| A | 16 | 4 |
| A | 18 | 5 |
| B | 10 | 3 |
| B | 15 | 5 |
| B | 15 | 4 |
| B | 15 | 8 |
Solved! Go to Solution.
@Anonymous ,
Here is the formula:
[Sum Of Max] =
SUMX(
VALUES( T[ItemID] ),
CALCULATE( MAX( T[Bid] ) )
)
I need it in measure. Thanks!
@Anonymous ,
Here is the formula:
Hi @Anonymous ,
Not very clear.
What will be the expected output 18 and 15 ?
Regards,
Harsh Nathani
I needed total of maximum values. Thanks!
Hi @Anonymous ,
Solution provided above.
But sharing since I worked on it too
Sum of Max Bids =
var Maxvalue =
SUMMARIZE('Table','Table'[Itemid ],
"Max Value",
CALCULATE(MAX('Table'[Bid($)])
)
)
RETURN
SUMX(MaxValue,[Max Value])
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 7 | |
| 6 | |
| 5 | |
| 5 |
| User | Count |
|---|---|
| 24 | |
| 11 | |
| 9 | |
| 9 | |
| 8 |