I want to view overdue tickets in the calendar view for a specific epic. I added a filter for the due date and selected the "Now Overdue" status, and it shows me all of the overdue tickets. When I filter for the specific epic, none of its child issues appear in the calendar view. Is there any way I can see the overdue tickets within an epic in the calendar view? If not in the calendar view, how else can I see it?
Hello @Kaladin Stormblessed
How have you added the filter for a specific Epic?
Can you provide a screen image showing the filter options you are using?
These are the filters I have selected. I want to be able to view all overdue child issues under a specific epic. If I search for the epic key, it doesn't display its child issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for that additional information.
This filter
...is telling the system to display only the issues of type Epic. So you combined filter selections are filtering for overdue Epics. That is why no child issues are displaying.
If you want to filter for overdue child issues for specific Epics, you need to remove that Type filter and instead add a filter for Parent.
The select the Epics for which you want to see the overdue child issues.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Trudy Claspill Can I see subtasks using this method? Or do I have to repeatedly use the parent filter and select the stories and tasks under the particular epic to see the subtasks within the epic?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When using the Parent field and the Epic issue keys you will not see the subtasks under the child stories of the Epic. The Parent of the subtask is the child story. You would have to also select the issue keys for the child stories when filtering for Parent in order to get their subtasks to display.
In the View All Issues screen you can get both child issues and subtasks that are overdue under an epic with this JQL:
project=project and duedate is not empty and duedate < startofday() and linkedissue=EpicIssueKey
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.