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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I'm trying to add a column that that takes Ext Retail value (row level) and divides it by the sum of Ext Retail column value.
For example, the first row of $5007/$138,626 should return 0.03611. I tried a measure and calculated column but getting 1.00.
Any suggestions?
Solved! Go to Solution.
@Anonymous ,
Try this:
Measure = SUM(TABLE[Ext Retail]) / CALCULATE(SUM(TABLE[Ext Retail]), ALL(TABLE[ITEM ID]))