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,
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 >= "2016/09/01" and createdDate < "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.
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.