Searching for an Issue in JIRA Filter

Deepak Indoliya May 8, 2012

If I have a filter called "foo", how I can search for all issues in "foo" that have the status = "Open"? Is there a way to achieve this? I'd like to base multiple JQL queries on "foo" and present different results.

2 answers

1 accepted

0 votes
Answer accepted
Ian D May 8, 2012

yeah, I need to do this all the time also. So I typically create 3 filter as follows (example purposes only):

- foo everything (JQL: project = "project x" and type not in (producer tasks, clarifications)"

- foo unresolved (JQL: filter = foo and resolution = unresolved)

- foo resolved (JQL: filter = foo and resolution = resolved)

The "foo everything" filter basically provides the baseline filter, which is then re-used by other filters. Thus, if you need to update something in baseline its more efficient that needing to update N other filters.

Hope this helps!

Deepak Indoliya May 8, 2012

Thank you Ian. This works!

0 votes
Renjith Pillai
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.
May 8, 2012

Assuming 'foo' is a project then:
project = foo and status = Open

I am sure I didn't get what you actually wanted, since my answer looks too obvious :)

Suggest an answer

Log in or Sign up to answer