Issues with no time logged for last 14 days

tracy_bergamin 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

0 votes
Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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.

Suggest an answer

Log in or Sign up to answer