I hope I can explain this properly. I have numerous projects in jira with tasks assigned to me. I also have things I need to do outside of jira. I want to be able to add tasks to my Personal task list in Jira and have ALL my tasks show on the board. I am not seeing how I can provide a custom filter to the personal task list so that it shows all tasks assigned to me regardless of the "project". Is this possible?
Absolutely - all you need to do is create a filter (saved search) for the issues you want to see, and then create a new board that uses that filter.
I've got exactly that in several Jira systems. My filter is something along the lines of "(assignee = nic or label = nic) and resolution = unresolved)"
Your personal tasks will need to be created as issues in a project somewhere for this to work though.
Hi @Colleen Gotling - Your board filter is as simple as this:
Assignee = currentUser()
though I would make it drop off resolved issues with something like this:
Assignee = currentUser() AND (resolved IS EMPTY OR resolved >= -3d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you, I understand the board filter but the problem is that I am not seeing where to set the board filter on the Personal Project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
ok - It looks like you're working with a Team Managed Project. It's still possible to create a unique board, but it won't cleanly tie to your project. You could take these steps:
https://YOURINSTANCE.atlassian.net/jira/boards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Colleen, the Assignee = currentUser() filter board approach the others mentioned is the right way to get a unified view of all your assigned Jira issues across projects.
For the personal to-dos you need to track outside of Jira, you might want to check out Apollo - Checklist for Jira on the Atlassian Marketplace. It has a dedicated Personal Checklist area — a standalone space for your own tasks that lives separately from your team's Jira issues.
That way, you can manage your personal to-dos in the same tool without them cluttering up the team's backlog or boards.
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.