Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Project Status last week

Andrijana Volic
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 20, 2019

Hi,

I used the two dimensional filter Gadget to get an overview of the current Status from all my Projects. Now I want to do a second one with the Status from last week to compare what has changed and what not in each Project.

 

But I don't know how to Change the JQL to get the result I want. I don't want to see only the changes that happened between the last and the current week. I Need this overview to see what has changed and what not.

 

my JQL for the current Status is:

project in (xxx) AND issuetype in (Change, Finding, "Simple Change", Aufgabe, "Task with Approval", Unteraufgabe)

 

Is it possible to just add the time (-7d) to it or do I have to create a new JQL? If so, how?

 

Thanks :)

 

1 answer

0 votes
Alexey Matveev
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.
March 20, 2019

Hello,

Maybe it could be like this:

project in (xxx) AND issuetype in (Change, Finding, "Simple Change", Aufgabe, "Task with Approval", Unteraufgabe) and status changed after -7d

Andrijana Volic
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
March 20, 2019

Hi, thanks for you answer.

I found out how it works:

 

project in (xxx) AND issuetype in (Change, Finding, "Simple Change", Aufgabe, "Task with Approval", Unteraufgabe) AND updated <= startOfDay(-6) ORDER BY status ASC

Suggest an answer

Log in or Sign up to answer