Field 'closed' does not exist or you do not have permission to view it.

Amichaels February 13, 2013

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.

2 answers

2 votes
Udo Brand
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 13, 2013

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

0 votes
Amichaels February 13, 2013

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.

Udo Brand
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 13, 2013

for resolved please see here

and this should work:

status changed to closed AFTER -2d

Amichaels February 13, 2013

Is there a way to show all issues but the ones that are closed only shows closed after -2d?

Udo Brand
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 13, 2013

use

not(status changed to closed AFTER -2d)

Suggest an answer

Log in or Sign up to answer