How can i filter for tickets worked on in a date range?

jfarinelli February 24, 2020

I would like to set up a filter that shows the all the tickets worked on during a range of dates.  For example, I would like to see all the tickets with time logged from 2/3/2020 until 2/24/2020

2 answers

1 accepted

0 votes
Answer accepted
Pete Singleton
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

Like this:

worklogDate >= "2020-03-02" AND worklogDate <= "2020-02-24"
jfarinelli February 24, 2020

When running that filter in my project it is returning 0 results.  My filter looks like

 

project = XXXX AND worklogDate >= "2020-03-02" AND worklogDate <= "2020-02-24" order by created DESC

Pete Singleton
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

Sorry my typo, the format is "YYYY-MM-DD", so it should be:

worklogDate >= "2020-02-03" AND worklogDate <= "2020-02-24"
jfarinelli February 24, 2020

Thanks a ton

0 votes
jfarinelli February 24, 2020

Thanks!

Pete Singleton
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

If it worked can you mark the answer as accepted please?

Suggest an answer

Log in or Sign up to answer