JQL question with "WAS"

Marc Addeo August 1, 2012

I have the following JQL I want to use to get all issues that are billable, that were closed within the current month. Instead it's showing all from the previous month as well.. What is wrong with my JQL?

Billable= Yes AND status = Closed AND status WAS Closed DURING (startOfMonth(), endOfMonth()) ORDER BY project, created asc

1 answer

1 accepted

1 vote
Answer accepted
Jobin Kuruvilla [Adaptavist]
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.
August 1, 2012

Try this:

Billable= Yes AND status = Closed AND status CHANGED to Closed DURING (startOfMonth(), endOfMonth()) ORDER BY project, created asc

Marc Addeo August 1, 2012

Thanks, this worked!

Suggest an answer

Log in or Sign up to answer