You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I am trying to create a filter that will pick up only issues that are due to be actioned between 20 minutes from now and 10 minutes from now.
There is a date/time field defined that will have been populated with the actioning time (Planned Run Time) and I need the report to pick up only issues that are between 20 and 10 minutes prior to this time
I can get the first part to work
"Planned Run Time" >= -20m
But I thought adding the following would work and it doesn't
AND "Planned Run Time" <= -10m
So my full JQL was "Planned Run Time" >= -20m AND "Planned Run Time" <= -10m
I cant use specific date/times in the JQL as I want to use these filters for subscription notification reporting (so subscribed users get an email with issues that are due to be actioned between 20 and 10 minutes time from the present)
What am I doing wrong?
Thanks
Hello,
You choose issues which already expired, If you want to choose issues, which are going to expire after 10 to 20 mins then your JQL query should be like this:
"Planned Run Time" >= 10m AND "Planned Run Time" <= 20m
Catch up with Atlassian Product Managers in our 2020 Demo Den round-up! From Advanced Roadmaps to Code in Jira to Next-Gen Workflows, check out the videos below to help up-level your work in the new ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.