Forum Discussion
johnmurphy
8 years agoNew Member
Combining Measures for Group Chart
Dear All, I was hoping you could help me out, I have the following data set Customer Contract Type Potential Sales Amt Annual Fee Services 1 ...
- 8 years ago
To achieve your requirement, you can refer to following measures:
1. Potential ---> Total Potential Sales with Segmentation by Contract Type
Total Potential Sales = CALCULATE(SUM(Table1[Potential Sales Amt]),FILTER(ALL(Table1),Table1[Contract Type]=MAX(Table1[Contract Type])))
2.Services ---> Total Services all up
Total Services = SUMX(ALL(Table1),Table1[Services])
3. Annual Fees+Lease ---> Total Annual Fees + Potential Sales Amt (only for Lease)
Total Annual Fees = CALCULATE(SUM(Table1[Annual Fee]),FILTER(ALL(Table1),Table1[Contract Type]="Lease"))
Thanks,
Xi Jin.
v-xjiin-msft
8 years agoSolution Sage
To achieve your requirement, you can refer to following measures:
1. Potential ---> Total Potential Sales with Segmentation by Contract Type
Total Potential Sales = CALCULATE(SUM(Table1[Potential Sales Amt]),FILTER(ALL(Table1),Table1[Contract Type]=MAX(Table1[Contract Type])))
2.Services ---> Total Services all up
Total Services = SUMX(ALL(Table1),Table1[Services])
3. Annual Fees+Lease ---> Total Annual Fees + Potential Sales Amt (only for Lease)
Total Annual Fees = CALCULATE(SUM(Table1[Annual Fee]),FILTER(ALL(Table1),Table1[Contract Type]="Lease"))
Thanks,
Xi Jin.