Hi @Rahul ,
please try something like:
type = Bug AND created >= -30d
And:
type = Bug AND resolved >= -30d
Hi @Rahul
A Reported vs Resolved chart might be better than JQLs.
If so, see our blog article for how to add it to your dashboard: A powerful Reported vs Done chart for Jira dashboards.
Thank you,
Danut M.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Query for Created:
project = "Your Project" and type = Bug and createdDate >= startOfMonth() and createdDate <= endOfMonth()
Query for Resolved:
project = "Your Project" type = Bug and resolutionDate >= startOfMonth() and resolutionDate <= endOfMonth() and resolution = Done
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.