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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a table that looks like this:
The end result would need to look like this:
The table result will change based on other filters selected, so I don't think it can be a calculated column. A measure makes more sense, but have struggled trying to figure out how to sum the data dynamically based on filters selected. Any assistance is appreciated! Thank you.
Unless I am missing something, you should just be able to do something like:
Total Cost = SUM([Cost]) Total Quantity = SUM([Quantity]) Cost Per = DIVIDE([Total Cost],[Total Quantity],BLANK())
Thank you for the suggestion. I tried it and it gave the same results as my calculation below, but both are still not quite the right answer. It needs to be the summation of all costs / the summation of all quantities averaged over all locations depending on the filter selected.
Value =
var __Numerator = CALCULATE(sum(Table[Cost]),FILTER(Table, Table[Location]=SELECTEDVALUE(Table[Location])))
var __Denominator = CALCULATE(sum(Table[Quantity]),FILTER(Table, Table[Location]=SELECTEDVALUE(Table[Location])))
return DIVIDE(__Numerator/__Denominator)
[Total Cost] = sum ( 'Table'[Cost] ) [Total Quantity] = sum ( 'Table'[Quantity] ) [Average Cost] = divide ( [Total Cost], [Total Quantity] ) [Your Measure] = averagex( addcolumns( summarize( 'Table', 'Table'[Location] ), "'Table'[AvgCostPerLocation]", [Average Cost] ), 'Table'[AvgCostPerLocation] )
Please never use the table name in front of a measure and always use the table name before a column. This is one of the most important things in good DAX. Never deviate from this. EVER.
Best
Darek
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 10 |