How can I filter the tasks with empty Sprint field? I need to create a filter to get the list of tasks that are not assigned to any sprint yet.
Have you tried to run a JQL (to the tune of)
project = "project name" and sprint is EMPTY - this is if you are looking for a task or issue that has a sprint field empty on a specific project.
Or you can just run Sprint is Empty JQL and this shows all tasks that have the sprint field empty.
Theodore
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This JQL should get you the result you are looking for:
project = JRA AND sprint IS EMPTY
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.