How to create a report in Jira of all the hours I've worked in a week

jeph perro picture jeph perro · May 29, 2012 · Viewed 48.9k times · Source

We use Jira ( plain jira, no greenhopper ) for project/task management and a separate system for time tracking.

How can I run a report to extract all the hours I have worked in the last week?

Answer

Daria Trainor picture Daria Trainor · May 29, 2012

You can create a custom filter with a custom search query:

project = "My project" and timeSpent is not null and updated > startOfWeek("-1") and assignee was CurrentUser()

More information on JQL is here - https://confluence.atlassian.com/display/JIRA/Advanced+Searching#AdvancedSearching-Updated