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-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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