How can I create a filter that lists the tickets that I have updated by date?

mshahandeh October 16, 2019

I need to create a filter that shows all the tickets that I have updated by the date that those updates happened. Is this doable in Jira?

3 answers

0 votes
David Garcia October 17, 2019

Still not quite there but a little closer...

status CHANGED BY currentUser() AFTER startOfYear()
0 votes
David Garcia October 16, 2019
assignee WAS currentUser() AND updated > "2019/10/15" AND updated < "2019/10/16"

 

This might be sufficient if you know you at least used to be the assignee.

Or if you are watching the issues you could add

watcher = currentUser()
0 votes
Kurt Klinner
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.
October 16, 2019

@mshahandeh 

 

Hi

 

you can filter for the updated field

For example to find issues updated on the 15th of October you could try

updated > "2019/10/15" and updated < "2019/10/16"

 

https://confluence.atlassian.com/jiracorecloud/advanced-searching-fields-reference-765593716.html

provides details on advanced searching within Jira

 

Cheers

Kurt

mshahandeh October 17, 2019

Thank you for your answer but this is not what I'm looking for. The field 'Updated' gets updated every time that the ticket is updated. Then I loose track of the history of my work. I want a list that shows what I have done on each specific date.

Suggest an answer

Log in or Sign up to answer