Using JQL query ,Find issue which is not modied for some no of days

George April 22, 2015

Hi ,

 

Need JQL Query to Find issue which is not modied for some no of days

 

Thanks

 

1 answer

1 vote
Simon Kegel //SEIBERT/MEDIA
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.
April 22, 2015

Hey George,

I think you look for something like this

updated <= startofday(-3d)
to search issues in the past which weren't modified - in the example 3days

Greets
Simon 

Udo Brand
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.
April 22, 2015

That query will show all issues updated in the last three days! You need the ones not updated in the last three days (except the one that are already closed): updated <= -3d and status != closed

Simon Kegel //SEIBERT/MEDIA
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.
April 22, 2015

Argh that little >< thing all the time - my bad. thanks for correcting.

Suggest an answer

Log in or Sign up to answer