Forum Discussion
PaulCo
8 years agoHelper II
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...
- 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
v-yuta-msft
8 years agoCommunity Support
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
PaulCo
8 years agoHelper II
Perfect, thanks.
I had to do a couple of intermediateary steps but I got there with the help of your example.