I want to clone a task to a specific epic under a different project (bare minimum) and if possible also mirror the activity on that task regardless of which project I'm working from.
JQL has auto complete feature. If you try to type "in" it will advice you to all posibilities.
Use this JQL;
project=cs and status="in progress"And also you can use below for your other problem;
status != Done
thank you. thats perfect.
One more question. Is is possible to do something like this
project=cs and nj and pa and status="in progress"
So i'm search 3 project boards and returning all the In Progress tickets for those 3 boards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use "in" function
project in (cs, nj, pa) AND staus = "in progress"
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.
this worked :D thanks.
Going to leave it open In case anyone can help with the IS NOT issue.
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.