I want to create a problem filter that shows me the number of comments for each problem, and then sorts them.
I tried something like:
project = "myProject" AND created >= 2012-06-01 AND created < 2012-08-01 ORDER BY count(comment)
I'm on JIRA 4.2. How to do it?
source
share