- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Cumulative Count by Date
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-02-2018 10:51 AM - edited 03-02-2018 10:52 AM
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 Created Date.
Requests Created Cumulative = CALCULATE( COUNT('Production Approval Workflow'[RowNumber]), FILTER( 'Production Approval Workflow', ('Production Approval Workflow'[Created].[MonthNo] <= MAX ('CalendarTable'[Date]) ) ) )
This code above will return the correct cumulative total for all time. What do I need to add to get this measure to display a monthly cumulative total for each month?
Solved! Go to Solution.
Accepted Solutions
Re: Cumulative Count by Date
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-04-2018 10:08 PM
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] ) ) )
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
All Replies
Re: Cumulative Count by Date
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-02-2018 11:38 AM
Re: Cumulative Count by Date
[ Edited ]- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-02-2018 12:00 PM - edited 03-02-2018 12:01 PM
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.
Re: Cumulative Count by Date
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
03-04-2018 10:08 PM
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] ) ) )
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.