Forum Discussion
Totals Calculations using a % - a real problem
- 4 years ago
Hi,
Try this measure
Measure = SUMX(VALUES(Pipelime_MFMA[Project]),[Year 1 Adjusted by Probability])
Hope this helps.
Hi Miguel,
Many thanks for your reponse...I'm trying to implement it now but can't see where the Table[Project] comes from, in the final line, or what to replace it with.
Paul
Hi Otto_Luvpuppy,
The table[project] is the column you present on your data that has the values Scheme 1, Scheme 2 and so on.
Since I did not know the name of the table and column place that generic name, you should replace by the column on your model regarding that Shecme values.
- Otto_Luvpuppy4 years ago
Helper II
Hi Miguel,
Thanks again for taking thee time with this. I tried the following using your code...VAR _Chance =CALCULATE (SUM ( Pipeline_MFMA[xDelChance_Number] ))VAR _Authorised =CALCULATE (SUM ( Pipeline_MFMA[xCPY1] ) - [CPY1_DEL_Unauthorised],Pipeline_MFMA,Pipeline_MFMA[xDevDel_CPY1] = "Delivery")RETURNSUMX(VAlUES(Pipeline_MFMA),_Authorised * _Chance)
Unfortunately I get the same result as I did with my original code.Paul - Otto_Luvpuppy4 years ago
Helper II
Hi Miguel,
The problem is solved using a combination of your code and that of Ashish.....thank you both very much.
Paul