How do I write JQL to reflect tickets that were created on weekends and after 5pm on weekdays for certain Issue types?
Thank you for your help. This is very informative and greatly appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How could I get all tickets created on the weekends since beginning of the year?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use the following for tickets that were created on the weekend:
created > startOfWeek(-26h) AND created <= startOfWeek(1d) ORDER BY created DESC
Small edit:
I just noticed @Riley Venable has provided a rather comprehensive answer so I'll leave the rest but I think you already have your answer with the below :)
All the best,
Ash
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.