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] ) ) )
comish4lif
8 years agoHelper II
The picture above is how I want the calculation to show a monthly total.
Below is how it is not displaying the monthly total, and is only showing the complete total.
v-chuncz-msft
8 years agoCommunity Support
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] )
)
)