I have a custom field which is numeric.
Is there an out-of-box way to report on this field, to show the average of every ticket?
Hello @Luke Campbell
Welcome to the Atlassian community!
I haven't yet found an OTB gadget for reporting the average of values for a custom Number field across multiple issues.
You could, however, get this information through an Automation Rule.
You could use the Lookup Issues action to retrieve the set of issues you want to consider with a JQL statement.
You can get the average of the custom Number field values for that list with this smart value:
{{lookupIssues.<your custom Number field name>.average}}
The "average" function use with lists is documented here.
This sounds super exciting @Trudy Claspill !
Trying this:
Project = UT2 and type = Task and 'Time Over Window' > 0 {{lookupIssues.TimeOverWindow.average}}
And Automation won't validate my query; can you see what's wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, I was unclear.
You don't use the smart value in the Lookup Issues action. The Lookup Issues action gives you the ability to use the {{lookupIssues}} smart value/object in other actions.
So, after the Lookup Issues action, you might use a Send Email action and send an email message to somebody. You would use the smart value in the email content.
Also, within the smart value the name of your custom field needs to match what you see as its name in the UI, so it needs to be Time Over Window with spaces rather than TimeOverWindow without spaces.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Cool! Thanks @Trudy Claspill it works!
Bummer not to be able to report on it .. but nice to have a work around. Thanks again for taking the time.
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 must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.