Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I have a sample data below. What I'm trying to do is show the State which has the Max value of rows based on the distinct count of IDs.
Answer = West, which has 4 IDs count
I know how to show the value 4, but not the State = West.
My code:
DistinctCount = DISTINCTCOUNT(Table[ID])
Max Value = MAXX(values(Table[State]),[DistinctCount])
ID | State |
A | West |
B | West |
C | East |
D | North |
E | West |
F | West |
G | East |
Can anyone help me with bringing out the value "West"?
Thank you.
Solved! Go to Solution.
Hi @Anonymous ,
I have checked Jihwan_Kim's code, I think his measure will alway return "West", due to it will return the max state.
My Sample:
The max state in my sample should be "East".
State name max count: =
VAR _MaxCount =
MAXX ( VALUES ( 'Table'[State] ), [DistinctCount] )
RETURN
MAXX (
FILTER ( VALUES ( 'Table'[State] ), [DistinctCount] = _MaxCount ),
[State]
)
Result in my sample is as below.
Test by your data, result should return "West".
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I have checked Jihwan_Kim's code, I think his measure will alway return "West", due to it will return the max state.
My Sample:
The max state in my sample should be "East".
State name max count: =
VAR _MaxCount =
MAXX ( VALUES ( 'Table'[State] ), [DistinctCount] )
RETURN
MAXX (
FILTER ( VALUES ( 'Table'[State] ), [DistinctCount] = _MaxCount ),
[State]
)
Result in my sample is as below.
Test by your data, result should return "West".
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Please check the below picture and the attached pbix file.
State name max count: =
MAXX (
GROUPBY (
ADDCOLUMNS ( VALUES ( 'Table'[State] ), "@count", [DistinctCount] ),
'Table'[State],
"@maxcount", MAXX ( CURRENTGROUP (), [@count] )
),
'Table'[State]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
116 | |
104 | |
87 | |
35 | |
35 |
User | Count |
---|---|
152 | |
98 | |
81 | |
61 | |
55 |