Im looking to develop some metrics for my team as we move away from outlook and onto Jira. Im looking to capture via JQL a count of Jira issues that were created by or commented on by an individual within a specific date range (for example within one quarter).
Hi, Mike.
If you want to get the count by creation, it will be easier, you can use the following JQL:
creator = userName and created > '2018/07/01' and created < '2018/07/30'
Getting the count by comments made by someone and between dates is not possible with the native JQL, that's why I recommend getting the information based on creation. To do this with comments, you can use the Scripted JQL functions from ScriptRunner.
Kind regards,
Maurício Karas
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.