Create Filter for "createdDate"

Michael Eder June 16, 2015

Hi Folks,

 

I would like to create a filter wich shows me all issues created exactly 2 weeks ago.

Queries like "created <= -2w" shows me all issues created within 2 weeks.

The query "created = -2w" shows me nothing.

The query "(created <= -14d and created >= -15d)" shows me issue from 2 days.

 

What am I missing?

1 answer

0 votes
Matheus Fernandes
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
June 16, 2015

Michael,

Try using the start/end of day functions, like

created &gt;= startOfDay(-15d) and created &lt; endOfDay(-15d)

 

Cheers,
Matheus 

Suggest an answer

Log in or Sign up to answer