How do i create a filter for recently updated tickets?
ie) I want to see the tickets that users have updated in the last day or last week.
I'm sure thisi is a filter in the system. I just haven't figured it out yet.
Thanks in advance!
Hi,
Believe me or not, but JIRA does not have built-in "system" Search Filters you normally manage and use via Issues | Manage Filters.
The reason is very simple: creating filters is so easy :)
To give you an example - in every project page (just click on any project in Projects menu) you see in the top right corner Filters menu where you have "Updated Recently". When you click on it JIRA will show you search results with issues updated in last week. That's done building a JQL query on the fly - e.g. https://jira.atlassian.com/secure/IssueNavigator.jspa?reset=true&mode=hide&jqlQuery=project+%3D+JRA+AND+updated%3E%3D-1w+ORDER+BY+updated+DESC
If you take a closer look on it (e.g. switch Issue Navigator to Edit mode) you will see that the query is dead simple: it filters issue for Updated field from "-1w" (which means 1 week ago) to "" (which means till any time in the future). That's the definition of "recently" for JIRA out of the box.
Just define similar search on your own, save it as a filter and you are done :)
I hope it helps.
Cheers,
Wojtek
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Filters is a great tool, very flexible but...
Is it possible to filter by commenter or commentee?
I have a filter: "updated >= -4d ORDER BY updated DESC" so I can see what all happened. I want to see on which issues I have to comment/reply on.
Problem: I see also the issues on which I commented myself (getting to the top of this list).
Question: is it possible to filter on the last comments made by commitee (e.g. myself) so that I can only show the last issues which I am NOT the last one who made a comment?
This would make it possible to make a kinda "todo" list for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We now use this filter:
labels = overleg AND labels != a_mute AND Commenter != currentUser() ORDER BY updated DESC, key DESC
I'm not sure but I think we installed a plug-in for this: JIRA Toolkit Plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We now use this filter (simplified):
Commenter != currentUser() ORDER BY updated DESC, key DESC
I'm not sure but I think we installed a plug-in for this: JIRA Toolkit Plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you.
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.
I need something like "last modified" by user ID.
I want to see all modifications done by a user, Comments, Status changes, field edits and then filter down based on timeframe.
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 your changes on JIRA, click on Profile link at top right corner. it displays your recent update under Activity Stream
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For new types of queries I used "project = xxx AND status = "For Test" ORDER BY updated DESC" trouble is that at current date they are still sorted by assignee too.
Steps:
1. Write query: "project = xxx AND status = "For Test" ORDER BY updated DESC"
2. List and Observe.
The following occurs:
List is also sorted by assignee.
[Note]: First time used filter was "project = xxx AND status = "For Test" ORDER BY updated DESC, assignee ASC" . This however might affect the result stated in "The following occurs"
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.