You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
Yes using this JQL createdDate >= "2019-11-16 9:00" and createdDate <= "2019-11-21 21:00" Its Not showing the data ofter 9
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.