We have a requirement where we want to filter a Jira incidents with below criteria.
- Specify a start date and end date where the tickets will be shown only from 9am to 9pm of each day. (Ignoring night time tickets)
AND
- Ignoring incidents (ticket) which are already resolved and having false alarm.
HI @Sagar Ghuge
Try This
createdDate >= "2019-11-16 9:00" and createdDate <= "2019-11-21 21:00"
Thanks,
PVS
Thanks, but I am looking for something else. This query is fetching all incidents from 2019-11-16 9AM to 2019-11-21 9pm. I want to exclude all incidents which falls in night time (21:00 to 9:00) in those days.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, What @Sagar Ghuge is trying to say is, he needs to filter from one specific date lets say: 15th November to 21st November. But the tickets should be showing time from morning 9 AM to 9 PM only, so tickets of 8 AM or 10 PM should not be shown.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@PVS It doesn't work. Please have a look at screen-shot below:
Query used by me - project = INCDT AND createdDate >= "2019-11-16 9:00" and createdDate <= "2019-11-21 21:00"
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.