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
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
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 |
---|---|
89 | |
88 | |
82 | |
64 | |
49 |
User | Count |
---|---|
125 | |
111 | |
88 | |
69 | |
66 |