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
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
169 | |
144 | |
90 | |
70 | |
58 |