I need to view all the tasks assigned to one person (completed or otherwise) . I am having difficulty to filter and compile that information
Another variation, depending on what you are looking for, is to use the WAS operator instead of =. This will pull any ticket the person WAS ever the assignee for.
You will have to switch to Advanced JQL (Switch to JQL) to use this expression and for some of those offered in the answers above as well.
assignee was User
Hello @Vaidehi Rayate
In the advanced JQL you can simple specify the assignee of the user you want to search.
assignee = <USER-NAME>
the above will show you all historical dates, if you want to restrict it to certain date then can use date filters such as
assignee = <USER-NAME> and created >= -30d
give you last 30 days issues.
Further you can include other fields such as issuetypes, status based on your requirement
Add required columns to export.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Vaidehi Rayate
You can get all the tasks currently assigned to a user by filtering on the Assignee field.
In what way does that not satisfy your need?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you want to constrain it to only issue that were assigned to a sprint in the past, a currently active sprint, or a future sprint that has not started, then add this criteria:
sprint is not empty
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It gives me information only for the current sprint, I want to see combined information from all past sprints as well
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please show us how you are trying to view all tasks for the person.
Have you created a search to retrieve the data? If so, show us the search query you are using.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.