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
Anonymous
Not applicable

calculate percentange of yes and no based on their names , hoping a quick measure could help.

Hi, 

i'd like to get percentage of yes and no based on their names , here is the data :

Name Attendance 
Andy Yes
Andy Yes
BenNo
Andy No
BenYes
BenYes
BenNo
BenYes

 

and the result i want is divide based on the total name count. 

 YesNo
Andy 67%33%
Ben60%40%
1 ACCEPTED SOLUTION

Hi there,

Yes = CALCULATE(COUNTROWS('Table');'Table'[Attendance ]="Yes")/
CALCULATE(COUNTROWS('Table');ALL('Table'[Attendance ]))
No = CALCULATE(COUNTROWS('Table');'Table'[Attendance ]="No")/
CALCULATE(COUNTROWS('Table');ALL('Table'[Attendance ]))

yesno.png

File.

 

Kind regards, Steve. 

View solution in original post

6 REPLIES 6
AlB
Community Champion
Community Champion

Hi @Anonymous 

1. Place Name in the rows of a matrix visual

2. Place Attendance  in the columns the matrix visual

3. Place Attendance  in Values of the matrix visual. Choose Count and Show value as--> Percent of row total

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Contact me privately for support with any larger-scale BI needs, tutoring, etc.

Cheers 

SU18_powerbi_badge

Anonymous
Not applicable

@AlB , sorry. i'm actually looking for a method or quick measure for me to get the following answer .

 

 Total Count

% Yes

( # of Yes / total count)

% No

( # of No  / total count)

Andy 367%33%
Ben 560%40%

 

Do you know any formula for me to get that? thanks again.

Hi there,

Yes = CALCULATE(COUNTROWS('Table');'Table'[Attendance ]="Yes")/
CALCULATE(COUNTROWS('Table');ALL('Table'[Attendance ]))
No = CALCULATE(COUNTROWS('Table');'Table'[Attendance ]="No")/
CALCULATE(COUNTROWS('Table');ALL('Table'[Attendance ]))

yesno.png

File.

 

Kind regards, Steve. 

Anonymous
Not applicable

Awesome! thanks @stevedep ! 🙂 

Anonymous
Not applicable

Thanks AIB.

I want to use it for stacked column chart which allow to show Andy and Ben yes and no %. how do i do so? 

is there any quick measure formula allow me to find name "Andy" and count yes or no %? 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

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.

June 2025 community update carousel

Fabric Community Update - June 2025

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