Help please?
I have a team that completes work that has some pretty strict SLA's and auditability requirements on their work. They needed that the 'Calc Due Date' would generate based on the date the ticket was lodged. Once lodged, this date cannot change as it has to reported on. By exception, there will be situations where agreed upon delays to that due date can occur.
I have automations auto-filling the Due Date (which is then not-editable); easy.
If a user has to extend the Due Date out, there is a field "Extended Due Date" that is populated as part of the process.
What I am now trying to do is generate a JQL query that will return a list of work that is due in the next 2 days; this would be based on the 'Calc. Due Date' UNLESS there is the 'Extended Due Date' is populated, when it should return results based on that date.
To generate a JQL query that returns a list of work due in the next 2 days, considering both the 'Calc Due Date' and 'Extended Due Date' fields, you can use the following query:
(project = YourProject AND
((DueDate >= startOfDay() AND DueDate <= endOfDay("+2d")) OR
(ExtendedDueDate >= startOfDay() AND ExtendedDueDate <= endOfDay("+2d"))))
Explanation of the query:
Thank you so much @Piyush Singh!
Now I can see exactly where I went wrong with my own attempts at this went awry. This JQL works perfectly. Thank you, thank you, thank you!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Piyush Singh How to get past or over due issues with the same due date and extension date?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.