Is it possible to create a filter that allows you to add specific projects manually?
Because I need to create an overview of all the project I am involved in on a board. However not all of these projects are assigned to me directly.
Thanks in advance
Hi @Sergio M. Gard, welcome to Atlassian Community. If I understand your question correctly you might create a filter listing all projects needed for your result set by using IN like this:
project IN (projectA, projectB, projectC)
Then you can manually add or remove any project key according to the current involvment. In the Board itself you might seperate them by creating quick filters, or by swimlanes.
I'm not sure this answers your question though, so if I misunderstood something please provide more information on the exact problem.
TimK.
Hello Tim K,
Is this in basis or JQL. I have tried it in JQL but my input might be wrong?
project IN (MP-1035, MP-1244, MP-506, PCT-8396, PCT-10026, MP-1730)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sergio M. Gard, in e.g. MP-1035 (your first entry) is the project key MP or is it actually MP-1035? I mean are MP-1035 actually an issue key, and not the project key?
If you are actually refering to issue keys in your JQL you will instead need something like this:
key IN (MP-1035, MP-1244, MP-506, PCT-8396, PCT-10026, MP-1730)
This will look for specific issues and not specific project.
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Tim,
YEs these are issue, I think these are the keys? Can I find the key / identifier of an issue somewhere? One that works with the filter?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sergio M. Gard , did you try the last JQL I sent in my prevous comment? This should fetch the issues.
Key is the identifyer for the issue, so the issue numbers you are reffering to are the keys. They are the same.
On every issue you will se the key on the top, like shown here:
Those works in filters when using "key in" as shown here:
TimK.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I did but it was not working. After a page refresh, it was all good. I appreciate your help!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sergio M. Gard, thanks for accepting the answer. I'm glad I could help.
TimK.
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.