Probably answered already, but all we're looking for is a way to export a calendar of Issues based on their Due Dates. E.g. the list/report would show "11/15 - following Issues due. 11/16 - so on".
Thank you!
Hello,
Natively in Jira there are not any calendar formatted result sets and you would want to look into a calendar add-on for a preconfigured export of jira issues as a calendar.
Atlassian has Team Calendars if you also have Confluence set up that can generate a calendar export, and Integrate a list of jira issues
Alternatively you can use JQL to create a list that can be used in an external application. Check out the Advanced Searching documentation for a full list of option, but what you would want to do is use the ORDER BY keyword operator on an ASC or DESC order with a field referance to your due date field, with something like:
Project = X ORDER BY duedate DESC
Then once you have the list generated in the desired order export the list as described here to use in another application such as excel or open office, and create a calendar off the data.
Regards,
Earl
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.