Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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)
User | Count |
---|---|
17 | |
14 | |
13 | |
13 | |
11 |
User | Count |
---|---|
19 | |
16 | |
15 | |
11 | |
9 |