Hi Helpful Atlassian Community,
I'm trying to create a filter that shows bugs created in the last 24 hours. And I am completely new to JQL:
project = SEED AND issuetype = Bug AND status in ("Claim Fix", "Fix Failed", "Fix Verified", "In Progress", "Need More Info", Open, Reopened) AND createdDate IS (+24h)
The createdDate IS (+24h) is where the problem seems to be. The rest of the filter works separatedly.
Thanks for the help!
Gracias! Thanks a lot!!!! it works!
Just out of pure curiosity, this would mean the filter would count 24 hours back every time the filter is looked at?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes it will count 24 hours back every time and display only the issues that met this criteria.
If you need a different approach you can also use some of the provided JQL functions like
startOfDay() or endOfDay() described here:
ie: Find new issues created since the start of yesterday:created > startOfDay("-1")
As you can see there are many possible solutions depending on your needs.
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.
+24h means 24 hours in the future. Try -24h
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.