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 again cearly65
Create a detached Calender table with contiguous dates and no relationships.
Create this measure
In your line graph drag the calander date to X-axis and the Open tickets measure to your y-axis. This does what you requested,
Hi speedramps,
I implemented what you recommended but the resulting chart doesn't seem to plot what I'm looking for. I think it's plotting the change in unresolved by date and not the total count of unresolved by date. Below is the screenshot of what the chart with your measure looks like. You can compare it to what I posted earlier this morning as the desired chart.
- v-kkf-msft4 years agoCommunity Support
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.- cearly654 years agoFrequent Visitor
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.