Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL query for fetching quarterly issues automatically in jira dashboard

Testing August 22, 2024

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.

2 answers

0 votes
Simon König
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 22, 2024

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

 

Found here: https://community.atlassian.com/t5/Jira-Service-Management/Is-there-a-quot-startOfQuarter-quot-like-there-is-a-quot/qaq-p/1213277

0 votes
Duc Thang TRAN
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 22, 2024

Hello @Testing 

Jql dont have this funct startofquarter but you can use startOfMonth(-3)  like created >= startOfMonth(-3)  

 

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events