I’m trying to get an jira tickets on a board which haven’t updated in more than 6 months. Could you help? What would be j query for that? I have mentioned updateddate <= -6 and it’s still giving me January, march, may 2024 tickets
Hello @Meghana kamble
Welcome to the Atlassian community!
You need to provide a time unit when using a criteria for a relative date. For example
updated <= -6d : all issues updated 6 days ago or longer
Unfortunately there is not a unit for months. You could use weeks instead
6 months * 4 weeks/month = 24 weeks
updated <= -24w
Or you can set a criteria relative to the start of the current month:
updated <= startOfMonth(-6)
You did not indicate if you are using Jira Cloud or Jira Data Center, so here are the links to advanced search documentation related to the Updated field for both.
https://support.atlassian.com/jira-software-cloud/docs/jql-fields/#Updated
Thank you so much. It worked when i mentioned updated <= -24w
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.