This questions has been asked but the answers do not include time. The following works but we need to add the time to this jquery and it doesn't seem to work:
status changed during (2019-06-01, 2019-06-20) to (Approved)
Adding time to the date ranges results in an error.
status changed during ('2019-06-01 10:00', '2019-06-01 12:00') to (Approved)
Hi, this works well. Thank you.
Please is there a way how to filter by person who made that change ?
I´ve tried "status changed BY (username)" but it will not filter that specific change but any change that was made during task life cycle.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does the dates mention in during refers to the updated Date on the Jira ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think it refers to the jira transition date, but not totally sure
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This should work...
STATUS Changed AFTER '2019-06-01 10:00' BEFORE '2019-06-01 12:00' TO Approved BY username
See this doc page for details:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I wanted to get all Blocked tickets that are at least 3 weeks old, how does the syntax for these fields "(+/-)n(yMwdm)" end up working? Because the below doesn't.
status changed DURING (endOfWeek(), endOfWeek(-3w)) TO (Blocked)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The startOf... endOf... functions take parameters in their own units. You don't specify a unit.
In other words:
endOfWeek() means the end of current week,
endOfWeek(-1) means the end of last week,
endOfWeek(-2) means the end of the week before the last,
... so on.
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.