JQL Query - between two dates

Deleted user January 22, 2014

I'm looking to write a script that shows me all the 'issues' where the date field is 7 days before today and 7 days after today.

I have the two below scripts, but I need one that integrates both of them;

Everything 7 days from today

"Start Date" <= endOfDay(7d) and "Start Date" >= startOfDay()

Everything 7 days before today

"Start Date" >= startOfDay(-7d)

2 answers

1 accepted

3 votes
Answer accepted
JamieA
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.
January 22, 2014

Don't you just want to OR the two clauses together, ie

("Start Date"<= endOfDay(7d) and"Start Date">= startOfDay()) OR
"Change Start">= startOfDay(-7d)

Deleted user January 23, 2014

Although, changing your script slightly seems to work

"Start Date" &lt;= endOfDay(7d) AND "Start Date" &gt;= startOfDay() OR "Start Date" &gt;= startOfDay(-7d) AND "Start Date" &lt;= startOfDay()

Deleted user January 23, 2014

Unfortunaly not as the first one will give me all the issues 7 days from today and then EVERYTHING before today, and then the second one gives me all the issues from 7 days before today and then EVERYTHING after today. So putting them both together basically gives me EVERYTHING :(

0 votes
Anila April 4, 2019

created > startOfDay(-7) AND created < startOfDay(-6)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events