Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Dear Experts
Can someone please help me achieve this % value in the measure column based on the total of Qty.
Please help me with the formula.
Thanks in advance
MAHAD
Solved! Go to Solution.
Assuming that Qty is a measure, you could use
Qty % =
var currentQty = [Qty]
var totalQty = CALCULATE([Qty], ALLSELECTED())
return DIVIDE( currentQty, totalQty)
Assuming that Qty is a measure, you could use
Qty % =
var currentQty = [Qty]
var totalQty = CALCULATE([Qty], ALLSELECTED())
return DIVIDE( currentQty, totalQty)