Hi,
I filtered an epic with a project key like this, "epic link" = ABC-001.
It works, but If I want to filter multiple epics, I haven't succeeded e.g. like this,
"epic link" = ABC-001, ABC-002 or "epic link" = ABC-001; ABC-002
Could someone advice how to do it?
Thank you,
Hi,
If you want to filter multiple epics you have to make your JQL this way:
"epic link" in (ABC-001, ABC-002)
In fact, every time you want to do a JQL which filters multiple values for a field, you should use "in" operator.
Regards,
Marcos
Hi Marcos,
Thank you very much, it works very well!
It is not easy to find out from the document of Jira.
Br,
Susumu
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.
You can write yout JQL like this
project = ABC
it will select all issues from the ABC project
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Thanks for your reply.
But I have a lots of epics in a project. So in that way, I think I can't eliminate some of epics... I want to select some epics and tasks, which are belong to those epics. Any other suggestions..?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure what your requirement is. But you could have a look at such pluigns as ScriptRunner or JTricks. There is a huge possibility that you can find a solution with these plugins.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, I've heard ScriptRunner. I'll try to find a solution from some plug-in.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It should be possible to filter by Epic
Example -
project = TEST AND issuetype = Epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your reply.
I think my question title is not good, it doesn't show exactly what I meant.
Maybe, it should be like, "How to filter multiple epics?"
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.