Forum Discussion
CR
7 years agoResolver II
Cumulative count not working
Hi ! I'm lost because, usually, it works fine when I create a measure to cumulate the values by month. Today, no... Here is a part of my Excel table: Actual type TagName Validation Date...
- 7 years ago
hi, CR
Add a date table and then create the relationship with "MTI test" [Date]
Then adjust your formula as below:
Measure = CALCULATE(COUNT('MTI test'[Actual type]), FILTER('MTI test','MTI test'[TagName Validation]="Not Validated"), FILTER('MTI test','MTI test'[Actual type]="Package"), FILTER(ALLSELECTED('Date'),'Date'[Date]<=MAX('Date'[Date]) ))Then right-click [Actual type] field and select "Show items with no data"
My simple sample result:
Best Regards,
Lin
CR
7 years agoResolver II
Hi parry2k
I need to display this:
| Actual type | 2018-09 | 2018-10 | 2018-12 | 2019-01 | 2019-02 |
| Electrical | |||||
| HVAC | |||||
| INSTRUM | |||||
| LOOP | |||||
| Package | 3 | 5 | 5 | 5 | 5 |
| Total |
I just need to cumulate the CREATION DATE values without taking the END into account, and with cumulative data in the months coming after...
Regards,
CR