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.
I'm having some trouble understanding how to get the percent of a total count for category.
I have a measure that counts the rows for a given criteria (where the days late are >=1).
What I need to do is provide the percent Total_Carrier_Lates per carrier compared to the total of all Total_Carrier_Lates:
So in the table above, I'm look to add a new column that says late weighting... row 1 would be 6614/12621...
How do I get the sum of the total counts?
Every example I've seen uses SUM to add some thing like a sales amount column, but I need to count the instances that match the critera and then add those up?
My measure counting the late shipments is:
Appreciate any help.
Solved! Go to Solution.
Probably should have known it would click after posting....
Hi @ekroll
please try
% Late =
DIVIDE (
[Total_Carrier_Lates],
CALCULATE ( [Total_Carrier_Lates], ALL ( 'EAP LTL Shipments'[Category] ) )
)
Probably should have known it would click after posting....