I am searching for all the JIRA IDs where work logs of a given project have been updated between two dates. Here start date of the logged work could be any date.
When we log our work it has both dates "started" and "updated". Can we have JQL to find JIRA issue ids on the basis of "updated" dates?
Can someone help me to find this out?
Thanks!
Hi Team,
I need JQL query to list the issues for which the work log edit and delete actions.
Hey Asish,
Something like the below should work (thanks to https://community.atlassian.com/t5/Jira-questions/JQL-JIRA-Filter-on-Worklog/qaq-p/246707 for the workLogged function reminder)
issueFunction in workLogged("after 2017/12/29 before 2017/12/31") OR (updatedDate >= "2016-01-01" AND updatedDate <= "2016-05-31 11:00")
CCM
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.