The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
79 | |
77 | |
46 | |
38 |
User | Count |
---|---|
148 | |
116 | |
65 | |
64 | |
54 |