The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
Solved! Go to Solution.
Hi @madisonb
Please try this:
Here I create a measure for your reference:
MEASURE =
VAR _currentState =
SELECTEDVALUE ( 'Table'[State] )
VAR _MinRank =
CALCULATE (
MIN ( 'Table'[Rank] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[State] = _currentState )
)
RETURN
CALCULATE (
MAX ( 'Table'[High] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[State] = _currentState
&& 'Table'[Rank] = _MinRank
)
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @madisonb
Please try this:
Here I create a measure for your reference:
MEASURE =
VAR _currentState =
SELECTEDVALUE ( 'Table'[State] )
VAR _MinRank =
CALCULATE (
MIN ( 'Table'[Rank] ),
FILTER ( ALLSELECTED ( 'Table' ), 'Table'[State] = _currentState )
)
RETURN
CALCULATE (
MAX ( 'Table'[High] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[State] = _currentState
&& 'Table'[Rank] = _MinRank
)
)
The result is as follow:
Best Regards
Zhengdong Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
21 | |
19 | |
18 | |
17 | |
12 |
User | Count |
---|---|
36 | |
34 | |
20 | |
19 | |
14 |