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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
DeepDive
Helper IV
Helper IV

How to Calculate Mode on Value coloumn of summarized table ?

Hi Experts,

 

I want to calculate mode of value column of summarized table : For example am using below dax to get the table summarized, summarized dax and summarized table is below.. now I want to calcualte mode  " Count of order by customer"

 

summarized_Table = summarize('Sales','Sales'[CustomerKY+Date]),"Count_Freq",CALCULATE(COUNT('Sales'[CustomerKY+Date]),
ALLEXCEPT('Sales','Sales'[CustomerKY+Date]),FILTER('Sales','Sales'[SalesValue]>0))

 

Mode.png

 

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@DeepDive ,

 

Click query editor-> transform-> split columns by the left most space like below:

1.PNG 

 

Then you can achieve the Customer and Date columns:

2.PNG 

 

Finally modify the dax like below:

summarized_Table = 
SUMMARIZE (
    'Sales',
    'Sales'[Customer],
    "Count_Freq", CALCULATE (
        COUNT ( 'Sales'[Customer] ),
        ALLEXCEPT ( 'Sales', 'Sales'[Customer] ),
        FILTER ( 'Sales', 'Sales'[SalesValue] > 0 )
    )
)

3.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@DeepDive ,

 

Click query editor-> transform-> split columns by the left most space like below:

1.PNG 

 

Then you can achieve the Customer and Date columns:

2.PNG 

 

Finally modify the dax like below:

summarized_Table = 
SUMMARIZE (
    'Sales',
    'Sales'[Customer],
    "Count_Freq", CALCULATE (
        COUNT ( 'Sales'[Customer] ),
        ALLEXCEPT ( 'Sales', 'Sales'[Customer] ),
        FILTER ( 'Sales', 'Sales'[SalesValue] > 0 )
    )
)

3.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

jdbuchanan71
Super User
Super User

@DeepDive 

Here is a good article on statistical-patterns.  Mode is towards the top of the aticle.

https://www.daxpatterns.com/statistical-patterns/

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors