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.
In the old view, the work log can be viewed and edited by opening the "Work log" tab on the bottom of the view.
You can query the history of Jira issues and access the results effortlessly in a Matrix table. You can achieve this by leveraging the JQL history functions and the Extended JQL functionality of Issue Matrix for Jira.
The worklogDate function allows Jira users to search for issues where some work was logged at a specific date. For example, the JQL query below will search for Jira issues were work was logged on Feb 22nd 2022: worklogDate = "2022-02-24"
Assignee means the person to whom the issue is assigned and workLogAuthor is the person to logs works on the issue i.e. Time spent on the issue can be logged by 10 people and each of them will be workLogAuthor but assignee can only be 1 person for each issue in jira.
Use advance searching via JQL:
worklogAuthor = currentUser() AND worklogDate >= "2016/12/01" AND worklogDate <= "2016/12/31"
If you have Script Runner installed, you can use the following query. It will show you the issues only where you have logged work in JIRA.
issueFunction in workLogged("after 2014/09/01 before 2015/01/30 by <USER_NAME>")
Where the dates can be set to the range of the week you want to query, and the USER_NAME can be your username.
Script Runner Documentation
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With