How to build a filter that displays only the tasks where work has been logged in?

Alejandro Roquero September 12, 2018

Hi!

I want to display all the tasks where our staff has logged work into.

I have built some filters for projects, but this one seems too tricky actually to me. This is the current design. It doesnt work and seems not to be able to identify the status Logwork.

 

project = projectname AND issuetype = Task AND status = Logwork ORDER BY created DESC

 

Could you help me?

Best regards,

A.

1 answer

1 accepted

2 votes
Answer accepted
Alexey Matveev
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.
September 12, 2018

Hello,

If you want to get all tickets with logged work, then your JQL query should be like this:

timespent > 0
Alejandro Roquero September 12, 2018

Hello Alexey,

thank you very much for this quick reply! I changed the JQL and now it works:

project = projectname AND timespent is not EMPTY AND status not in (Done)

Really cool!

Best regards!

Alexey Matveev
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.
September 13, 2018

You are welcome! If you feel like my answer helped you, kindly mark my answer as accepted.

Suggest an answer

Log in or Sign up to answer