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.
Hi All,
I want my query to show all issues that are in open and In progress till yesterday.
This query is limited to Project and issues created more than 1 day ago which are in either Open status or In Progress status
project = project-key AND status in (Open, "In Progress") AND created <= -1d
Let me know if this is returning issues that you need
Thanks
Try this out
status changed TO (Open, "In Progress") AFTER startOfDay(-1)
Thanks,
Tim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thought about this a little more cause this could return other issues beyond just the ones in open and in progress. I added a little bit more to isolate just those issues. This will show all issues in the status of Open and in progress if they were transitioned to those status since yesterday.
status in (Open, "In Progress") AND status changed TO (Open, "In Progress") AFTER startOfDay(-1)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess status in (Open, "In Progress") is enough right?
Once we have checked the issue is in Open or In Progress, why are we checking the status of the issue was changed?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Maybe I misinterpreted the question... I read it like can I have a query that will show me all open and in progress issues that actually got to that status since at least the day prior.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Tim Perrault Guess to compare the issue context we need when the issue is changed which is not given by @Prabhu Chilukuri !!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Tim Perrault Your interpretation was correct but both of our approaches were different, and I appreciate yours!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Pramodh Mreally I'm just trying to get to these questions before you end up posting the correct answer haha :) I bow to the Kudos leader!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have something similar to this... I want to see all issues that were open yesterday, including those that were closed today... will that above query do that, or do I need another field or two?
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.