It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
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
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.
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHi Community! My name is Amir and I’m on the Jira Service Desk product marketing team at Atlassian. Our team would love to understand how you’re leveraging our ecosystem for Jira Service Desk. Wha...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.