Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register 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
User | Count |
---|---|
84 | |
79 | |
71 | |
47 | |
42 |
User | Count |
---|---|
109 | |
54 | |
50 | |
40 | |
40 |