Hi Team,
I would like to have a JQL query to filter the jira tickets based on Shift basis per quarter.
Example:
Need to query the 6am to 15PM jira tickets for each quarter
Please help.
Hi @Venkatesh T Gowda This is very interesting requirement. We can filter issues based on date range as below. This example will give you issues created in last quarter from 1st oct to 31st dec.
created >= "2021/10/01" AND created =< "2021/12/31"
However adding time range for the same field 'created' won't help as it will not produce right result and will only consider superset i.e. date range specified.
To filter out issues based on time range, I would suggest to use dropdown custom field say 'Shift' and use it with above query to get required results.
Hope this helps.
Hi @Suvarna Gaikwad , thanks for your update. Sure will try as you suggested.
Basically we need to prepare a report every Month and quarter to get the JIRA tickets created based on the shift we work.
I have tried all the way to get this data but failed.
Is there any way we can come up with this feature?
Thank you,
Venky
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can try this filter for the previous month:
created >= startOfMonth(-1) AND created < endOfMonth(-1)
Hope this helps.
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.