Forum Discussion
torbenani
6 years agoFrequent Visitor
Count open support case
For a service desk application, I want to count the number of open cases a any given time. I have tow date columns "CreatedDate" and "SolutionDate". I case is considered to be open at any "given date...
az38
6 years agoCommunity Champion
Oh, sorry, my bad
Open Cases =
CALCULATE(COUNTROWS(Table),
FILTER(ALL(Table),
Table[CreatedDate] < SELECTEDVALUE('Calendar Table'[Date]) &&
(Table[SolutionDate] > SELECTEDVALUE('Calendar Table'[Date]) || ISBLANK(Table[SolutionDate]))
)
)torbenani
6 years agoFrequent Visitor
az38 - Thanks for your help. This works perfect.