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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors