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
new_learner
New Member

Aggregation of data by calculating percentage in each category

Hello Everyone,

I have a dataset that is imported in the desktop version and includes city names and the success of a test in those cities as follows. test_success is a binary column where 1 represents success.

citytest_success
a1
b0
c0
a1
d1
c0
b1

 

I would like to create a table or pie chart that shows the total number of tests held in each city as well as the proportion of success of the tests in each city, so the outcome would show three columns:

 

  •  city
  • total number of success 
  • percentage of success rate in each city

 

 

So, in this case, the percentage of success rate in each city is equal to the total number of success divided by the total number of tests in each city.

 

I hope someone can help me with this request.

 

Much appreciated

 

1 ACCEPTED SOLUTION
sayaliredij
Solution Sage
Solution Sage

You can calculate in following way

 

Total Tests = COUNT('Table'[Test_Success])
 
Success Test = SUM('Table'[Test_Success])
 
% success = [Success Test]/[Total Tests]




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
sayaliredij
Solution Sage
Solution Sage

Thank you for your reply 🙂 

 

Could you please Mark my post as a solution?

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




sayaliredij
Solution Sage
Solution Sage

You can calculate in following way

 

Total Tests = COUNT('Table'[Test_Success])
 
Success Test = SUM('Table'[Test_Success])
 
% success = [Success Test]/[Total Tests]




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




@sayaliredij It worked well, thanks so much and have a good day!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors