Forum Discussion
JeevanMallya
Resolver II
1 year agoNeed a Column that adds reported Cumulative defects
I have a Table with Reported Defects and I want to create a New column that shows Cummulative by Considering ISSUE_KEY Columns with actual defects reported and ignoring null.I have added index column...
- 1 year ago
Thank you
danextian
Super User
1 year agoHi JeevanMallya
Looking at the two tables, I don't see any difference.
JeevanMallya
Resolver II
1 year agoThere is a difference.REPORTED_CUMMULATIVE_ISSUE_KEY is a column with cummulative of ISSUE_KEY
- danextian1 year ago
Super User
Try this:
Cumulative Count = VAR _Tbl = FILTER ( 'Project', Project[PROJECT_KEY] = EARLIER ( Project[PROJECT_KEY] ) && Project[Index] <= EARLIER ( Project[Index] ) --only index with less than or equal to current row index && NOT ( ISBLANK ( Project[ISSUE_KEY] ) ) ) RETURN SUMX ( _Tbl, [CREATED_COUNT] )- JeevanMallya1 year ago
Resolver II
Thank you