Need a filter for the issues resolved last week (not the current week)O from last sunday to last saturday
If an issue is resolved a resolution is set, so you can use:
Resolution changed during (startofweek(-7d), endofweek(-7d))
Hi Vijayasree,
You can use something like
"project = SSA AND created > startOfWeek(-7) and created <= startOfWeek(-1)".
Start of the week in Jira is Sunday. So in the case of the example above, it'll be from Sunday to last Saturday.
I hope this helps
Regards,
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if the function changed since this was last updated, but currently startOfWeek(-7) would go back 7 weeks, so if you want the start of the week before, you need to do startOfWeek(-1)
So to update the example:
project = SSA AND created >= startOfWeek(-1) and created < startOfWeek()
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.