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
Hi,
I have a measure that calculates the count of a categoric value.
I want to calculate the overall percentage of this measure.
For example;
1/5422
15/5422
2/5422 and so on..
Here is my DAX;
Measure 2 =
var reason = CALCULATE(COUNT('Table'[Reason]))
return
reason
I can't write the var function that will always be 5422. Its the total countrows of the ID column.
Thanks in advance.
Solved! Go to Solution.
You are wright, it cant be in a variable.
Please do this
% of Count =
DIVIDE(
COUNTROWS(Table),
CALCULATE(COUNTROWS(Table),
ALL(table)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
I used ALLSELECTED() an it worked. Thanks Jose big time.
Hi
You need the folowing measure
% of Count =
var _count = COUNTROWS(Table[Reason])
RETURN
DIVIDE(
_count,
CALCULATE(_count,
ALL(table)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hi Jose,
Thank you for the response.
Unfortunately,
I have an error in this row of the DAX:
var _count = COUNTROWS(Table[Reason])
Because countrows only takes table as a function.
My bad. Then count the table rows
% of Count =
var _count = COUNTROWS(Table)
RETURN
DIVIDE(
_count,
CALCULATE(_count,
ALL(table)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Hi again,
Row based, it is always will be 1/1, 15/15, and so on . So, I get always %100. It doesnt get the total row count which is 5422. Total row count shouldnt change for every row.
With that measure it should't. Have you tried it?
ALL() function should remove all the filter contex and return the count of all rows.
Yes, I tried it. I am adding this measure to a table. Could that be the issue? Because the main idea is the give perc of the specific row's category.
You are wright, it cant be in a variable.
Please do this
% of Count =
DIVIDE(
COUNTROWS(Table),
CALCULATE(COUNTROWS(Table),
ALL(table)
)
)
Kind regards,
José
Please mark this answer as the solution if it resolves your issue.
Appreciate your kudos! 🙂
Nice one, Zé! 🙂
It seems working but need a little bit more. Can we get the total rows with the selected filters on the table?
Lets say without filters we have 120k, but with filters we have 5422. Should I use KEEPFILTERS?
I used ALLSELECTED() an it worked. Thanks Jose big time.
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 |
---|---|
86 | |
76 | |
74 | |
56 | |
45 |
User | Count |
---|---|
117 | |
105 | |
77 | |
66 | |
64 |