Forum Discussion
danafowler
9 years agoFrequent Visitor
New table / query based on existing query
I am trying to create a table that will let me know if a certain fault was fixed/corrected what the % of increase it would be. I am pulling data out of JIRA. Fields I am using for this is. 1. Pa...
v-huizhn-msft
Microsoft Employee
9 years agoHi danafowler,
In your source table, there are dupliate values in the Parts column, the TI column is aggregated in your chart, right? If it is, please review solution as follows.
First, please create a measure to calculate sum of TI for each Parts using the formula.
TI-sum=CALCULATE(SUM(Table[TI]),ALLEXCEPT(Table,Table[Parts]))
Second, create a another measure FPY.
FPY=Table[TI-sum]/1250
Finally, create a table, select the Parts, TI-sum, FPY as value level, you will get the expected result.
If this is not what you want, could you please share your source table for further analysis.
Best Regards,
Angelia