Forum Discussion
Count Completion Item Per Month
- 4 years ago
Anonymous wrote:
Sorry, I got one problem. it is showing a high value of the blank completion item. How do I resolve it?
I'm not sure what you mean by "high value" - are you possibly saying you do not want to count rows with no completion date? If so you could just add this condition to the calculate expression.
eg.
CountClosedItemPerMonth =
CALCULATE(countrows(TABLE),
NOT( ISBLANK( TABLE[Completion Date] ) )
USERELATIONSHIP(TABLE[Completion Date],'Date'[Date])
)
Anonymous wrote:
Sorry, I got one problem. it is showing a high value of the blank completion item. How do I resolve it?
I'm not sure what you mean by "high value" - are you possibly saying you do not want to count rows with no completion date? If so you could just add this condition to the calculate expression.
eg.
CountClosedItemPerMonth =
CALCULATE(countrows(TABLE),
NOT( ISBLANK( TABLE[Completion Date] ) )
USERELATIONSHIP(TABLE[Completion Date],'Date'[Date])
)
This is perfect! Exactly what I want. Thank you very much!