The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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....
User | Count |
---|---|
15 | |
13 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
19 | |
12 | |
9 | |
5 |