Hello,
Is there a way to find issues modified since last Wednesday ?
I know how to do it for the last X days, but here we have a meeting every Wednesday and need to see at any time whatever was done since the last meeting.
Thank you
Barth
You can use the following:
updated > "-2d"
updated > startOfDay()
updated > startOfWeek()
updated > startOfMonth()
updated > startOfYear()
Look here for details: https://confluence.atlassian.com/display/JIRA052/Advanced+Searching
Regards
If you want to find tickets you changed the status on :
status changed by currentUser() after startOfWeek(-1) ORDER BY updated DESC
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've never managed to get around this problem without code. We specifically write a derived date custom field that would store/display/search on "first monday before updated field" so we could search for "everything touched last week".
I think Jira 5 may have some JQL clauses that help now though...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your answer. This is what I thought. I'll have a try at JIRA 5, just to see if it might work in the future.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just a tiny add on for other answers. To check issues updated since last week, you can use
updated > startOfWeek(-1) in your advanced search query
-1 means for last one week.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
er, it's "updated > -Xd" - pretty simple jql, generated by the simple search (which has a nice popup help box to walk you through it) or typing in the JQL box.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi ,
Can you please share how you are able to find issues for the last X days ? Thank you :)
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.