Hi Team,
I want this kind of JQL to show how many tickets will be closed in the next 3 days.
Please suggest.
Thanks In Advance.
Hi @Gajanan Sasane,
That seems more like fortune telling than JQL, if I may open this one with a wink 😉
You cannot filter for things that are unknown. However, if you are using due dates on your issues, you can filter for those issues having a due date in the next 3 days like this:
due <= StartOfDay(3)
This will select all issues with a due date smaller than or equal today + 3 days. You can extend your filter to this:
due <= StartOfDay(3) AND resolution = Unresolved
if you only want to return issues that aren't resolved yet.
Great, this works.
I used the due date field in my issue.
Thanks for your suggestion, I appreciate it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have a confusion, above mentioned JQL showed also past due date issues.
Please suggest.@Walter Buggenhout,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you wish to exclude issues that are still open but we’re do greater than three days from now then consider the following.
due <= StartOfDay(3) AND due > StartOfDay() AND resolution = Unresolved
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Gajanan Sasane I don't thing this make any sense in JQL language. This is more like writing a script to resolve tickets in next three 3days. We can get info from JQL once they are resolved
Kind regards,
Moses
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.
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.