I need to generate a report that returns the tasks completed within a specific date range, including epics/stories/bugs, etc. I tried a query using "status CHANGED TO 'Done'," but I encountered the following issue: if a task was moved to Done in week 1, and then a second user reopened it by mistake and closed it again in week 2, the query would return it for both weeks. I thought there might be a field that records the date of the first task closure. P.S. Users have the freedom to change task statuses, and I am not an admin user.
Hi @Arthur Castro and welcome to the Community! Try using the following to capture resolution date range:
resolved >= "<date>" and resolved <= "<date>"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.