can someone help me confirm, can i only pull dates into the widget calendar from the Due Date field and not from a custom field?
Either way, I'm looking for a JQL for: pulling issues name onto a calendar view for any ticket that has a Target End date (that's a custom field i think) or Due Date across all sprints in a project (so anything before like jan 2023) along with the status and the label.
thanks for your help
Hi @MARY USEN,
The issues calendar gadget can display any date (custom) field you have in Jira. But only one at a time, as you can see from this configuration screen:
So yes, you can display the due date or the target end date, but you can't show both in the same calendar.
About your JQL, assuming that you want to fetch issues that have a sprint assigned as well as a target end date or due date, you could go with something like this:
Project = <your project> AND Sprint is not EMPTY AND (due is not EMPTY OR "Target end date" is not EMPTY)
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.