Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register 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....
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
21 | |
20 | |
14 | |
13 |
User | Count |
---|---|
43 | |
37 | |
25 | |
24 | |
22 |