On the Dashboard home page I have items that I have competed and are listed as DONE but are still showing on the assigned to me dashboard on my homepage. Is there a way for when these tasks/ issues are completed and done for them to no longer show?
Hi! Yep, adjust the JQL in the underlying filter. If you are using the assigned to me gadget, you may need to change gadgets that you are using.
Start with making a new filter.
Issues > Search for issues
Make the JQL "assignee = me and status != closed".
Then add a filter results gadget to a dashboard. You may need to create a new (or copy the other one you had) dashboard if you don't have permission to edit the other one. Adjust the gadget to use the new filter you just made.
That should do it! Let me know if you have any questions.
Hi Ryan!
Thank you so much for responding to me! I was able to do the JQL Search but now I am a little confused on how to add this filter to my home gadget dashboard. Can you please clarify on how I would add this JQL search results onto my home dashboard for the issues assigned to me?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Sarah,
So you should have saved the filter and given it a title. Now you can utilize this filter for gadgets on your dashboard. So now we either need to copy the old dashboard, so that you can make changes to it that only you will see, or create a new dashboard.
Then add a gadget to your dashboard (once you have edit permissions on the dashboard you will see an area to add gadgets to the white space of your dashboard), and select the "filter results" gadget. You may need to load all gadgets, then search them for the appropriate one.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you also do not want to see any issue that has been resolved but in another status (like Resolved), you can use Jql as below
"assignee = currentUser and resolution 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.
If everything is working now, can you mark this answer as accepted? There should be a checkbox next to the answer. Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We hit this issue when we added Service Desk due to the closed category name was not in the default filter. To further expand upon Tuncay's response, another option you can use to specify is
statusCategory not in (Done)
This will cover all names of green statuses and can be combined with the previously mentioned 'resolution is EMPTY' to make sure a status has a resolution and is in a done status before dropping it via your filter
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure if JQL has changed but I needed to write it like this:
assignee = currentUser() and status not in (Closed, Done) order by Key
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
as soon as you have to change this to a filter then the assigned to me widget is useless...
I can't believe this is marked as the correct answer when in fact is not the answer at all.
this is the same as saying don't use that do it a different way
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jira is made to be customized. Seems like you don't really understand that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
well it makes no sense that you need to customize what "assign to me" is...
also in a proper corporate world you should not have to be admin to do such basic things like configure a proper dashboard with the most basic features. I stand by my comment it really upsets me that my company pays for such a tool
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can make your own dashboard and filters. You don't need an admin. Seems like you would rather complain than learn to me. It's a powerful tool- if you want it to be. There's a reason your company pays for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The problem is the the Assigned to Me widget is crap because shows you every ticket you ever worked on. Like many things Jira, you can work around this half-baked feature by creating your own filter (but why would Atlassian suggest this "Assigned to Me" widget in the first place?).
Thanks god we're leaving Jira in 2019.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this definitely should be the correct answer. why would I need to create a filter for this. why are final status not automatically excluded... such a terrible software with so much user base... unbelievable
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The following worked for me.
Add a 'Filter results' gadget then use a saved filter 'openIssuesAssignedToMe' which I created in the search using Status != Done.
I couldn't see an option to add filters to 'assigned to me' gadget.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Below is the unresolved issues watched by current user
resolution is EMPTY and watcher = currentUser()
and below is the issues in Open status watched by current user
status = OPEN and watcher = currentUser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
fyi, the JQL behind this gadget is:
assignee = currentUser() and resolution=unresolved
let us customise it!
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.