Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello
I have a table shows the products name and I want to know what is the product percentage from all the quantity sold.
the formula is Unit Sales by Product (%) = Product Quantity Sold/ total Quantities Sold
but I dont know how to write it as a measure. I need your help
Solved! Go to Solution.
Hi,
To your visual, drag the product name column from the Data Table and write these measures
Qty sold = sum(Data[Quantity])
Qty sold across all products = calculate([Qty sold],all(Data[Product name]))
Qty sold (%) = divide([Qty sold],[Qty sold across all products])
Hope this helps.
Hi @Aha2022 ,
measure =
var Product Quantity Sold = calculate(sum(sales),allexcept(table,[product]))
var total Quantities Sold = calculate(sum(sales),all(table))
return
Product Quantity Sold/Quantities Sold
Best Regards,
Jay
Hi,
To your visual, drag the product name column from the Data Table and write these measures
Qty sold = sum(Data[Quantity])
Qty sold across all products = calculate([Qty sold],all(Data[Product name]))
Qty sold (%) = divide([Qty sold],[Qty sold across all products])
Hope this helps.
@Aha2022 , The measure should be
Unit Sales by Product (%) = Divide(Sum(Table[Product Quantity Sold]), Sum(Table[total Quantities Sold]))
Assume above are columns
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |