Forum Discussion
comish4lif
8 years agoHelper II
Cumulative Count by Date
I have looked at 47 different formula posted here and cannot figure this out. I have a Sharepoint list that tracks workflow items and I am trying to create a Cumulative Monthly count by the Creat...
- 8 years ago
You may refer to measure below.
Measure = CALCULATE ( COUNT ( 'Production Approval Workflow'[RowNumber] ), FILTER ( ALLSELECTED ( 'Production Approval Workflow' ), 'Production Approval Workflow'[Created] <= MAX ( 'CalendarTable'[Date] ) ) )
Toslo
4 years agoNew Member
In regard to the topic above. I used the solution to get a measure for the count in every category, but I get no values for dates when their is no "activity" on a category. It wil only cumulatively count the rows when there is a value in that year. Example 2018 "109", 2019 "" and 2020 "121". Does anybody know how to solve this issue?