I want to see all the jiras I updated today. I think I should be able to use the updatedDate field but am having trouble with the format.
Hi @Tom Smith ,
You may use the below JQL:
assignee = "your name " and updated >= startOfDay()
Hope this will help.
Regards,
Ankit Srivastava
Hi @Tom Smith and welcome to the community! You should be able to get the job done with this:
updated >= startOfDay()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Tom Smith, you may use either of the following:
"Last Updated By" = currentUser() AND updated >= startOfDay()
"Last Updated By" = tsmith AND updated >= startOfDay()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.