by last week do you mean during the previous week or in the last 7 days?
try
project = MYPROJ and resolved >= startOfWeek(-1) AND resolved <= endOfWeek(-1)
or
project = MYPROJ and resolved > -7d
thanks. Does not work when I want to filter by issue type. any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
you can add
issuetype = Bug or issuetype = Defects or issuetype = "your specific issuetype" to above queries.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thanks for the help. It does work for single issue type but not for multiple issue types for e.g. 3 issuetypes in one filter. Still better than nothing!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Evalaji Jones - you can modify your filter query to get all your required issue types in the same filter by including a list of the issue types you are interested in, eg:
project = MYPROJ AND issuetype in (Bug, Story, Epic) AND resolved >= startOfWeek(-1) AND resolved <= endOfWeek(-1) ORDER BY resolved ASC, id
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.
You will need to use
project = MYPROJ AND issuetype in (Bug, Story, Epic) AND resolved >= -7d ORDER BY resolved ASC, id
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
thank you it worked!
I had to put 'OR' instead on 'AND' to include all
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great - could you mark as answered so the remembers will find it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Evalaji Jones ,
Welcome to the community,
You can try below query. It will all the tickets resolved in last 7 days
resolved >= -7d
if you want to go by week like
resolved >= startOfWeek()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.