Forum Discussion
Not totalling Measure field
- 4 years ago
You will need to use SUMX to get the correct total. It is probably easier to use your existing measure in a new one to handle all the context transition. It will be along these lines.
Expected Iterations Correct Total = SUMX ( 'Task List', [Expected Iterations] )Or, if a single task can be in the table multiple times it will be like this.
Expected Iterations Correct Total = SUMX ( VALUES('Task List'[Task ID]), [Expected Iterations] )
You will need to use SUMX to get the correct total. It is probably easier to use your existing measure in a new one to handle all the context transition. It will be along these lines.
Expected Iterations Correct Total = SUMX ( 'Task List', [Expected Iterations] )
Or, if a single task can be in the table multiple times it will be like this.
Expected Iterations Correct Total = SUMX ( VALUES('Task List'[Task ID]), [Expected Iterations] )
- brokencornets4 years agoHelper IV
Thanks jdbuchanan71 - this works as a sum in the table but I can't use that new measure in a seperate card or it shows as 'Infinity' - any idea why that would be?
EDIT - Ignore this, I had a filter on the table visualisation but not on the card!
Thanks again for your help. Such a simple solution and yet it makes my head hurt.