This article is for Data Center. Visit Cloud
Sample Formulas - Users
Show everyone who worked on the task
ARRAY(reporter, assignee, developer, tester)
Note: developer and tester are custom fields - they will be automatically mapped only if those custom fields exist in your Jira instance.
Show everyone who worked on any task in the subtree
VALUES { ARRAY(reporter, assignee, developer, tester) }
Note:Â developer and tester are custom fields - they will be automatically mapped only if those custom fields exist in your Jira instance.
Calculate who logged the most work
worklogs
.GROUP($.author)
.MAP(ARRAY($.group, $.elements.timespent.sum()))
.UMAX_BY($.GET(1))
.GET(0)
Get a detailed description of the tasks users spent time on
First, use an attribute grouper with the formula:
Then, add a formula column:
Â