I need a JIRA filter to search by date

Kelly Lee
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
February 21, 2017

I need a JIRA filter to search by date

 I have this as the start of my filter and want filter the date to the last 90 days

assignee = currentUser() AND resolution = Unresolved AND date = (LAST 90 days)

 

thanks

Kelly

1 answer

0 votes
Ignacio Pulgar
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.
February 22, 2017

There are several date fields you can use in your JQL.

In example, you can get the list of issues that have been created in the last 90 days:

createdDate >= -90d

You can use other date fields instead of createdDate (AKA created), like updatedDate or resolutiondate.

Alternatively to using -90d, you may also use the function startOfMonth(), ie:

resolved >= startOfMonth(-3)

The JQL above returns issues that were resolved after the 1st day of 3 months back in the past (1 Nov 2016 if executed today).

More info on fields and functions.

Hope it helps.

Suggest an answer

Log in or Sign up to answer