Forum Discussion
Running Total Burndown
The data for JIRA looks like:
The shared calendar:
And what im getting as far as the UI
thegreenoz ,
try this,
Burndown_Chart =
VAR MaxResolvedDate =
MAX ( 'JIRA_CICD'[Resolved] ) -- Get the latest resolved issue date
VAR TargetValue = 40 -- Set your starting target value
VAR IssuesResolved =
CALCULATE (
COUNT ( 'JIRA_CICD'[Issue key] ),
'JIRA_CICD'[Status] = "Done",
'JIRA_CICD'[Resolved] <= MAX ( 'Calendar'[Date] ) -- Include only up to current month
)
RETURN
IF (
MAX ( 'Calendar'[Date] ) <= MaxResolvedDate, -- Show data only up to resolved dates
TargetValue - IssuesResolved, -- Subtract cumulative resolved issues from target
BLANK () -- Hide future months
)
- thegreenoz1 year agoFrequent Visitor
Thanks for that. Unfortunately the line goes up after the current month again.
- thegreenoz1 year agoFrequent Visitor
Hi, also we shouldnt go from 10 to 1, this is a month over month and not an accumulated tally which should be adding (increasing) overtime)