Hello,
I'm getting the following error when running this JQL filter:
closed < 1d
gives me the error:
Field 'closed' does not exist or you do not have permission to view it.
I'm logged in as a jira administrator and this is not a saved filter. I do not have access to modify the permissions of the closed field is its internal to Jira.
Please advise.
closed is a value of status not a field. What you need is to query on a closing date if you have one.
what do you want to achieve? Find all issues closed within the last day?
this should help:
status changed to closed AFTER -1d
What I"m trying to do is only show tickets closed within the previous 2 days.
I can run
resolved < 1d
and that works correctly.
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.
use
not(status changed to closed AFTER -2d)
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.