Forum Discussion

cearly65's avatar
cearly65
Frequent Visitor
4 years ago
Solved

Filterable Unresolved Issues Chart for JIRA data

I am trying to create a line chart showing unresolved ticket count by date over time for my team's Jira project.  All I have been able to find via searching the forums is this 'Created VS Resolved' c...
  • v-kkf-msft's avatar
    v-kkf-msft
    4 years ago

    Hi cearly65 ,

     

    Please try the measure.

     

    Open tickets = 
    CALCULATE (
        DISTINCTCOUNT ( 'Jiradata'[Issue Key] ),
        FILTER (
            'Jiradata',
            'Jiradata'[Created].[Date] <= MAX ( 'Calendar'[Date] )
                && (
                    'Jiradata'[Resolved].[Date] >= MAX ( 'Calendar'[Date] )
                        || Jiradata[Resolved] = BLANK ()
                )
        )
    )

     

    If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
    Best Regards,
    Winniz
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.