Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Community,
I want have a matrix which shows the number of people that have completed training. It is broken down by division, sub division, practice, and gives a headcount for the practice. I also want to show the percentage of people who have completed training in each practice, sub division and vision.
When I add the % completion to my matrix, the practices are correct but the division and subdivision % are a sum of the practice %, which is inaccurate. The % for division should be grand total completed / grand total headcount. The % completed for sub division should be sub total completed / sub total headcount. See right hand table Figure 2.
Figure 1 shows my data from excel:
Figure 1:
Figure 2:
Solved! Go to Solution.
Hi @LiamReidy ,
You could refer to the following measure:
Measure =
IF (
ISINSCOPE ( 'Table'[Practice] ),
SELECTEDVALUE ( 'Table'[Percentage] ),
DIVIDE ( SUM ( 'Table'[Completed] ), SUM ( 'Table'[headcount] ) )
)
Thank you @FrankAT ! I seem to be 90% of the way there. I cant seem to find where to change it from a decimal to a %. Can you let me know please then will accept as a solution. (i will accept it if i find it before another reply )
Thanks,
Liam
Hi, @LiamReidy,
select the measure, open tab Measure tools and change the formatting (see figure):
Regards FrankAT