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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
prady2581
Helper I
Helper I

DAX Measure for % of each type of defect type in Text

I searched the forum not able to find the solution for below. The dataset has top defects types, I can show each type of defects as count but I want to also show these (each defect type) count of total defect type out of the total defect count. This is text field not able to find a solution for this. 

 

e.g. in below for Ticket idle % will 3/ 6*100 = 50 % 

 

Please help

 

 

% Bar Graph.png

 

 

 

 

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

Hi @prady2581

Two methods

 

1.

9.png

 

2. create a measure

Measure =
DIVIDE (
    CALCULATE (
        COUNT ( Sheet4[ticket] ),
        ALLEXCEPT ( Sheet4, Sheet4[gap reasons] )
    ),
    CALCULATE ( COUNT ( Sheet4[ticket] ), ALL ( Sheet4 ) )
)

10.png

 

Best Regards

Maggie

 

View solution in original post

3 REPLIES 3
v-juanli-msft
Community Support
Community Support

Hi @prady2581

Two methods

 

1.

9.png

 

2. create a measure

Measure =
DIVIDE (
    CALCULATE (
        COUNT ( Sheet4[ticket] ),
        ALLEXCEPT ( Sheet4, Sheet4[gap reasons] )
    ),
    CALCULATE ( COUNT ( Sheet4[ticket] ), ALL ( Sheet4 ) )
)

10.png

 

Best Regards

Maggie

 

petrovnikitamai
Resolver V
Resolver V

try to add measure

new measure  = divide(count([Gap Reasons]);countx(All([Gap Reasons]);[Gap Reasons])
Anonymous
Not applicable

thanks! this a good solution.

 

One additional problem: how could the expression be written in order to also consider a specific period of time in the dataset?

 

For example, my dataset is broken down by month and, when I filter in my visualizations by a specific month, the percentages don't change because the expression is considering the full dataset.

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

May 2025 Monthly Update

Fabric Community Update - May 2025

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