Hello,
Is there any JQL query which can automatically fetch quarterly created epic issues in jira on dashboard?
I tired with startofquarter() function but it seems, its not supporting JQL in jira cloud.
There is not a native function "startofquarter()".
But there is a workaround like:
created >= startOfYear() and created <= startOfYear("+90d")
OR
created >= startOfMonth() and created <= startOfYear("+3")
OR just
created >= -90d for the last 90d
Hello @Testing
Jql dont have this funct startofquarter but you can use startOfMonth(-3) like created >= startOfMonth(-3)
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.