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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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