You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.