Folks, how do I search for JIRA issues (assigned to me) with different (2 or more) statuses? I want to see all issues with statuses "Request Acknowledged" OR "Customer Response" so I put: assignee = currentUser() AND status = "Request Acknowledged" OR status = "Customer Response" but it shows issues assigned to all users...
I'm a corporate JIRA user.
Hi @K, Ivan
Try this
assignee = currentUser() AND (status = "Request Acknowledged" OR status = "Customer Response")
or
assignee = currentUser() AND status in ( "Request Acknowledged", "Customer Response")
I hope it helps.
Ravi
thanks a lot! Both work very well @Ravi Sagar _Sparxsys_ any chance you know how to put this Favorite Filter as a homepage? I was to start JIRA with all my open issues
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you on server or cloud?
On Cloud link to favourite filter appears on your home page.
On both server and cloud you can create a dashboard with favourite/starred filters.
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ravi Sagar _Sparxsys_ any tutorial on how to create a dashboard with favourite/starred filters for the JIRA@server?
Here is how my Dashboard config looks like and here is my homepage when I delete the dashboard... I assume I'm on the server (*jira*.companyname.com). I wonder whether I should create a gadget with the search string
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
When you click on add a new gadget link it will ask you to select the favourite filter. It will then display all the favourite filters (if any).
You need to go to Issue Navigator to search the issues using the JQL (the one you wrote above). Once you get satisfactory results, just save that search as a filter. You can also make filters created by others as your favourite.
Once you have favourite filters it will then appear in the favourite filter gadget on your dashboard. Start by creating some filters and using those filters to create your dashboard.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@K, Ivan I made some videos on Jira fundamentals. It is still not complete as I need to cover searching, dashboard and reports but I hope it helps.
Ravi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am glad it was useful.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ravi Sagar _Sparxsys_ is there any way how to make the gadget show search results instead of a link to the saved favorite search ('Open Escas')? I wanted to instantly see all my open issues (say, all 5; as per JQL above). Thanks to you I already went so far but I want to make it perfect :)
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.