You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
need to see what defects were resolved within the last week
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.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.