Forum Discussion
Filterable Unresolved Issues Chart for JIRA data
- 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.
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.
That worked perfectly! I had some issues initially, but realized that my date columns weren't formatted correctly for the formula. Once that was fixed then the formula is showing the desired information.