Forums

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

I want to get the issues whos status changed from In Progress to Closed between the particular date

Adriano Rocha July 13, 2023

I want to get the issues whos status changed from "In Progress" to "Closed" between the particular date for creating a report.

2 answers

2 accepted

2 votes
Answer accepted
Sagar Mahajan
Community Champion
July 13, 2023

@Adriano Rocha You can use the below JQL query to get the issues which changed the status from between the 1st Jan 2023 to 20th Jan 2023

project = "your project name" AND status changed FROM "In Progress" to "closed" during (2023-01-01,2023-01-20)

Adriano Rocha July 14, 2023

Thanks @Sagar Mahajan 

0 votes
Answer accepted
Trudy Claspill
Community Champion
July 13, 2023

Hello @Adriano Rocha 

Welcome to the Atlassian community.

You can use the CHANGED operator for that.

 

status CHANGED FROM "In Progress" TO "Closed" DURING ("date1","date2")

Suggest an answer

Log in or Sign up to answer