Search code examples
filterjirajql

How do I find resolved JIRA issues in the CURRENT week (Monday to Friday)


I want to find all the issues resolved in current week. We are using JIRA web ui. I do see a way to specify "From" and "To" dates in JIRA Filter customization for resolution field. I am wondering what the right syntax is to specify the from date is Monday of current week.

The way I like to use this filter is to put this in a Dashboard and look at it each day at the end how we are doing with bug fixing in the current week.

Thanks
Video guy


Solution

  • The best you can do in Jira 4.1.1 is to get all issues resolved in the last 7 days from now: resolutiondate >= "-7d"

    Or create a filter for each day of the week. For example filter 'Issues resolved in a week (Wednesday)" will be resolutiondate >= "-3d". And filter 'Issues resolved in a week (Friday)" will be resolutiondate >= "-5d"

    Starting from Jira 4.3 you can use startOfWeek() function - resolutiondate > startOfWeek()