Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hello everyone.
I am currently working with the following dynamic table.
The idea of this is that in the %Total column of Count Uid, 100% appears for the product in general, but when subdividing it by the price range, it appears to me the percentage that each range is distributed to form 100%.
I currently have this DAX measure, but I have not been able to discriminate each percentage in order to achieve my objective.
%Total Count Uid for Ranks =
VAR Den =
CALCULATE([Count Uid], ALLSELECTED(Compliances))
RETURN
DIVIDE([Count Uid],Den)
If anyone can help me with this I would be grateful.
Thanks in advance for any assistance.
Solved! Go to Solution.
@Daxmon_23 , Try like
Try like
%Total Count Uid for Ranks =
WHERE The =
CALCULATE([Count Uid], ALLSELECTED())
RETURN
DIVIDE([Count Uid],Den)
Percent of Total and Percent of SubTotal https://www.youtube.com/watch?v=6jTildcV2ho
https://www.youtube.com/watch?v=cN8AO3_vmlY&t=24270s
@Daxmon_23 , Try like
Try like
%Total Count Uid for Ranks =
WHERE The =
CALCULATE([Count Uid], ALLSELECTED())
RETURN
DIVIDE([Count Uid],Den)
Percent of Total and Percent of SubTotal https://www.youtube.com/watch?v=6jTildcV2ho
https://www.youtube.com/watch?v=cN8AO3_vmlY&t=24270s
thanks for your help, that was so usefull
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |