The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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)
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
21 | |
12 | |
10 | |
7 |