March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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....
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |