All tickets from a single date

Joseph Mancuso September 8, 2016

What is the syntax for filter for one specific date?

Here is what I was thinking...

project = XYZ and "Event Start" = 2016-04-05

or

project ="XYZ" and createdDate =Date

 

What I am I not doing right?

 

Regards,

1 answer

1 accepted

0 votes
Answer accepted
Petar Petrov (Appfire)
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.
September 8, 2016

It depends on the field - if it's a date field which includes a time component (like createdDate, resolutionDate, etc.) you need to use the <= and >= operators like this:

createdDate &gt;= "2016/09/01" and createdDate &lt; "2016/09/02"

This will return all issues created on September 1st 2016. If time component is omitted, midnight is assumed.

For fields without a time component like dueDate, you can simply use the = operator.

Suggest an answer

Log in or Sign up to answer