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! Learn more
I have a categorical feature.
I want to get the maximum count and minimum count of categories in a column. That is, highest and and lowest counts (range).
How can I do that?
Here is an example:
| Category |
| AAA |
| AAA |
| BBB |
| BBB |
| AAA |
| BBB |
| AAA |
| CCC |
Maximum count is related to AAA which is 4
Minimum count is related to CCC which is 1.
I want to get 4 and 1 in two dax measures.
Thanks.
Solved! Go to Solution.
Hi,
Try these measures:
Count = COUNTROWS(Data)Maximum count = MAXX ( VALUES(Data[Category]), [Count] )Minimum count = MINX ( VALUES(Data[Category]), [Count] )
Hi, @Anonymous
Please check the below picture and the sample pbix file's link down below.
https://www.dropbox.com/s/qcc42kg4ste44dr/Mah65.pbix?dl=0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi,
Try these measures:
Count = COUNTROWS(Data)Maximum count = MAXX ( VALUES(Data[Category]), [Count] )Minimum count = MINX ( VALUES(Data[Category]), [Count] )
So this worked for me. But I am wondering if there is a way to alter it. I have a table Activities that have a column [ActivityType]. I was able to count the max and min activies but I want it to return what that activity is. For example "email" is the max activity, how do I return that instead of the count?
Hi,
Share data in a format that can be pasted in an MS Excel file and show the expected result.
Thank you very much.
I don't know why it didn't fully work with my measures and filters and data. Probably, because I had some null values in the main data. This modified version solved my problem.
Count = COUNTA('Data'[Category])
You are welcome.
Hi @Anonymous ,
Try these:
MaxCount =
MAXX (
SUMMARIZE (
'Table',
'Table'[Category],
"count",
CALCULATE (
COUNTA ( 'Table'[Category] ),
ALLEXCEPT ( 'Table', 'Table'[Category] )
)
),
[count]
)
MinCount =
MINX (
SUMMARIZE (
'Table',
'Table'[Category],
"count",
CALCULATE (
COUNTA ( 'Table'[Category] ),
ALLEXCEPT ( 'Table', 'Table'[Category] )
)
),
[count]
)
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.