JIRA: find all my logged work for last week

BarryPye picture BarryPye · Apr 18, 2014 · Viewed 26.4k times · Source

How would I create a JIRA filter that lists all of the issues on which I've logged time? I can then apply this to the activity stream.

Answer

Mahesha Kalpanie picture Mahesha Kalpanie · Dec 2, 2016

Use advance searching via JQL:

worklogAuthor = currentUser() 
                AND worklogDate >= "2016/12/01" 
                AND worklogDate <= "2016/12/31"