Forum Discussion

PaulCo's avatar
PaulCo
Helper II
8 years ago
Solved

Calculation based on Column Average

I am pulling data from SFDC which contains the Value of each deal booked and also the discount used for the deal. I want to summarise the data by month to show the Total Value, Average Value and then...
  • v-yuta-msft's avatar
    8 years ago

    Hi PaulCo,

     

    To achieve your requirement, create a measure using measure like below:

    Measure = CALCULATE(SUM(Table1[Weighted Average Discount]), ALLEXCEPT(Table1, Table1[Month]))

     

     

    Regards,

    Jimmy Tao