I have created a queue called "Daily Created Issues" but keep using issues from previous day. What do I need to modify where only tickets created within 24hrs appear in that queue. I have attached a screenshot for reference.
Hey @Gira Desai ,
Do you want to see items from the last 24 hours or just from today?
If just today then created >= startofday() should be enough (without the -1d)
the additional parameter you added actually goes back to the start of yesterday instead of the start of today
@Dirk Ronsmans Thank you for your feedback. That is exactly what I needed and have modified my query and it worked. Help is greatly appreciated!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Gira Desai
Welcome to the Atlassian Community.
Perhaps you can consider the following JQL query for issues created in the last 24 hours:
created >= -24h
Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Victor Law
Thank you for your reply. I modified JQL query as suggested but still not seeing any change.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Gira Desai
The JQL provided in the previous post includes all the Jira issues created in the last 24 hours. Hence, it will still include some tickets from yesterday.
If you are looking for a JQL query that focus on the tickets created Today (after 12:00 am), then you can try the following JQL instead:
created >= startOfDay()
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.
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.