The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

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

Issues with no time logged for last 14 days

tracy_bergamin
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!
October 22, 2020

I am trying to create a report of all issues that have not had time logged for the previous 14 days (there may have been time logged prior to that.) Is there a simple way to do this? 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Walter Buggenhout
Community Champion
October 30, 2020

Hi @tracy_bergamin,

Maybe this helps:

Project = XX and (worklogDate <= -14d OR (timespent is EMPTY and created <= -14d))  

As a bit of background:

the worklogdate looks at the time when hours spent were logged. So the first part of the statement should fetch issues with a last worklog more than 14 days ago.

The second part is there to retrieve issues with no hours logged at all. I'm using the created date to check for issues created more than 14 days ago without any hours logged.