I know I can create a filter that is NOT dynamic that will show all issues more than a year old like this:
project = "System Issues" and createdDate < '2011/01/25'
But I'd like the date to be dynamic, so it'd be something like project = "System Issues" and createdDate < 'now() + 365d'
Is this possible? The exact query I have above does not accomplish this goal.
Leave out the "now" function and use a - to say "ago". Createddate >-365d
Actually, try to swap to the simple filter and use the helpful "from / to" help popup to get the clause you need, then swap back to JQL if you need to.
Cool, I didn't knew that :-)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
worked like a charm, thanks!
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.
The JQL Enhancement Functions plugin seems to provide what you like:
created <= periodstart(year, -1)
https://plugins.atlassian.com/plugin/details/22514
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.