Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AaronToth
Helper II
Helper II

Measure that displays the number of times the most frequent value of a column appeared

I am looking for a way to create a measure that returns this numerical value and does not need the creation of an additional table and/or column.

 

Example:  In a 1 column table with the heading "colour" you see.

Red

Red

Blue

Green

Blue

Red

 

Red has the most occurrences at 3.  I want the measure to return 3, not "Red".  I've tried TOPN, MAX, MAXX, GROUPBY and some others.  It seems like the solutions are to create a new table and/or a new column and then look at that.  This seems a bit much to get this value.  How is this done without the use of another table or column?

1 ACCEPTED SOLUTION

@AaronToth Seems like MODE: Mode - Single Column - Microsoft Power BI Community

In your case:

Mode = VAR myTable = SUMMARIZE(Table,Table[Column],"Count",COUNT(Table[Column]))
VAR myTable2 = FILTER(myTable,[Count]=MAXX(myTable,[Count]))
VAR Mode1 = MAXX(LASTNONBLANK(myTable2,[Column]),[Column])
RETURN
COUNTROWS(FILTER(Table,[Column]=Mode1))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

3 REPLIES 3
AaronToth
Helper II
Helper II

I really appreciate the quick help @Greg_Deckler .  It worked flawlessly.  I guess the easier way of asking this question was to seek help finding the 'mode'.  Thanks again! 

AaronToth
Helper II
Helper II

With the use of TOPN I am able to get the value in the column that appears most, not the number of times it appeared.  It looks like there are some issues with ties when using some of these approaches, but that is okay in my use case.  I am not looking for "RED", "BLUE" or "GREEN" where a tie would matter in cases (i.e. blue and green both 2).  

Since I am looking at the number of times (most occurrences), then a 2 is a 2.  This is why I feel there should be a combination of two/three built in functions to return this value.

 

@AaronToth Seems like MODE: Mode - Single Column - Microsoft Power BI Community

In your case:

Mode = VAR myTable = SUMMARIZE(Table,Table[Column],"Count",COUNT(Table[Column]))
VAR myTable2 = FILTER(myTable,[Count]=MAXX(myTable,[Count]))
VAR Mode1 = MAXX(LASTNONBLANK(myTable2,[Column]),[Column])
RETURN
COUNTROWS(FILTER(Table,[Column]=Mode1))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors