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])
)
So the expression you have used will count rows that are on or after the last day of the selected period. To count rows with a closed date in the selected month you would normally either create a relationship to the closed date, then you could use a simple countrows expression. Or you could do something like the following pattern
VAR endOfPeriod = MAX('Date'[Date])
- Anonymous4 years agoNot applicable
Sorry, I got one problem. it is showing a high value of the blank completion item. How do I resolve it?
I'm using the following formula:
CountClosedItemPerMonth = CALCULATE(countrows(TABLE),USERELATIONSHIP(TABLE[Completion Date],'Date'[Date]))- d_gosbell4 years agoSuper User
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])
)- Anonymous4 years agoNot applicable
This is perfect! Exactly what I want. Thank you very much!