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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
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.