22

I need to filter on tickets that went into status a status of RTT after a particular date. These tickets would be resolved now but I need to see all those that entered that status after a date regardless of their current status.

user2117045
  • 221
  • 1
  • 2
  • 3

2 Answers2

46

for example, find all issues that their status changed from Open to Closed after 2012/12/31:

status CHANGED FROM "Open" TO "Closed" AFTER "2012/12/31"

you can find for info about CHANGED search key on Atlasian's Advanced Searching page.

Kuf
  • 17,318
  • 6
  • 67
  • 91
0

type = "Bug" AND status was in ("Resolved")

user2908957
  • 69
  • 1
  • 3