Forums

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

I want to create a filter on Time Tracking Field

Arpit Shah
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!
January 19, 2024

Hi Team,

 

My team is using JIRA's timetracking to track time on each ticket now We want to create a filter to find out which ticktes don't have any time tracking entered by devs and status is completed.

 

Can anyone help me on that

 

1 answer

1 vote
Sreenivasaraju P
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.
January 19, 2024

Hi @Arpit Shah ,

You can try with below Queries

This query will give all the tickets which are moved to Completed and no worklog. 

project = "your project name" AND issuetype = "your issue type" and timespent is EMPTY and status = Completed

 

This queries will give all the tickets which are moved to Completed and no worklog by your dev team group members (if any other team logs work also it will list).

project = "your project name" AND issuetype = "your issue type" and status = Completed and ((timespent is EMPTY) or (timespent is not empty and worklogauthor not in membersOf("your dev team group name")) )

 

 

Suggest an answer

Log in or Sign up to answer