Hi All,
In my Jira project we capture two fields that we want to compare. The first is cost and the other is just a way to categorise the costs (Let's say for example 1.1, 1.2 etc).
In the project there may be 8 issues with the category of 1.1 and 7 issues with the category of 1.2 with various different cost values assigned to them.
Is there a way on the dashboard to display the total cost value of the 8 issues against the cost category they are assigned. E.g. The total cost for 1.1 is $XXX, 1.2 is $XXX, etc...
Please feel free to reply with any clarifications you may need.
Hello Peter,
Welcome to the Atlassian Community!
Consider using a scripting solution as found on the Atlassian Marketplace. For example, in Power Scripts you could create a script that would run in the SIL Runner Gadget that would look like this:
The script would look like the following. You could change up the jql to match whatever you'd like.
string jql = "1.1 is not EMPTY";
string [] issues = selectIssues(jql);
runnerLog("\nIssue 1.1 1.2");
for (string issue in issues) {
runnerLog(issue + " " + issue.customfield_11003 + " " + issue.customfield_11004);
}
Regards,
Hyrum
Due to Confluence Cloud security features, you may need to open the documentation posted in incognito mode or by logging out of Confluence.
Please note that I am a product engineer for Power Scripts and that I work for Anova Apps, an Appfire company.
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.