Forum Discussion
jazking123
6 years agoFrequent Visitor
Calculated measure impacting Waterfall Chart
Good afternoon, I have been trying with my colleague to solve this seemingly simple problem for the last two days and it is absolutely driving us crazy. The problem: I am trying to create a...
- 6 years ago
Hi jazking123 ,
After my testing, you could edit your measure like the following DAX:
Sales Per Kilogram = CALCULATE ( DIVIDE ( CALCULATE ( SUM ( Sheet1[Sales Dollars] ), ALLSELECTED ( Sheet1[Item Description] ) ), CALCULATE ( SUM ( Sheet1[Weight] ), ALLSELECTED ( Sheet1[Item Category] ) ) ) )Here is the result.
v-eachen-msft
6 years agoCommunity Support
Hi jazking123 ,
After my testing, you could edit your measure like the following DAX:
Sales Per Kilogram =
CALCULATE (
DIVIDE (
CALCULATE (
SUM ( Sheet1[Sales Dollars] ),
ALLSELECTED ( Sheet1[Item Description] )
),
CALCULATE ( SUM ( Sheet1[Weight] ), ALLSELECTED ( Sheet1[Item Category] ) )
)
)
Here is the result.
jazking123
6 years agoFrequent Visitor
Thank you so much!
The solution works well. You have saved our sanity.