How to extract the Jira tickets created during particular period?
For example:
How to pull out the Jira tickets which are created during
last 0 to 3 days
last 4 to 11 days
last 12 to 20 days
and tickets that are created before 20 days?
Hi @Mruthyunjaya_S_lycadigital_com ,
You can query for these different scenarios like this:
created > startOfDay(-3)
Or
created > startOfDay(-11) AND created < startOfDay(-4)
Just update the number of days between the parentheses to achieve the desired number of days.
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.