Query logged work per week

Ryan McCabe
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!
February 24, 2020

I am trying to write a query to show all JIRAs where logged work is EMPTY for the previous week. Team members are supposed to log work (time) for each assigned JIRA. I need to be able to figure out how to see all JIRAs where logged work is not being inputted.

1 answer

0 votes
Muhammad Ramzan(Atlassian Certified Master)
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.
February 24, 2020

Following query will help you to get results.

 

worklogDate >= startOfYear() and timespent >3h

worklogdate: here you can mention the date range

timespent: here you can mention the hours range.

 

Now if you want to get only those issues where no time is recorded then simply try this one

 timespent<0

Suggest an answer

Log in or Sign up to answer