Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

How can I search for bugs created in the previous 24 hrs?

Ryan Jones June 17, 2014

I created a JQL with the following parameters:

project = ** AND createdDate = -1d AND issuetype = Bug OR issuetype = "Feature Bug"

I was hoping this would show me all bugs created the previous day but it is returning no results. Does anyone know what I am doing wrong here?

2 answers

1 accepted

0 votes
Answer accepted
Nic Brough -Adaptavist-
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 17, 2014

Try "createdDate > -1d" instead

The -1d means "go back 24 hours" and you want stuff after that point

(There's also some functions you can use which might be useful, but test the > -1d first)

0 votes
Ryan Jones June 17, 2014

Ahhh, the "=" was the culprit. Thanks Nic!

Suggest an answer

Log in or Sign up to answer