Forum Discussion

jazking123's avatar
jazking123
Frequent Visitor
6 years ago
Solved

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...
  • v-eachen-msft's avatar
    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.