I want to establish an overview of the summarized Original estimates and I succeeded in summarizing Original Estimates from sub-tasks to their parent (task level) by using the following rule:
{{issue.subtasks.Original Estimate.sum.divide(3600)}}h
See below trigger used.
Additionally, I would like to summarize Original Estimates from tasks to their parent (Epic level) and the logic rule for this is:
{{issue.tasks.Original Estimate.sum.divide(3600)}}h
However this does not work.
How do I summarize Original Estimates from tasks to their parent (Epic level)?
Welcome
I have this in place on my instance it it works on my end.
I've used "/3600" as my default time unit is hours, if your default unit is minutes, you would use "/60" instead
The Original Estimate in a smart value is shown in seconds, so you need to divide it into your default unit.
Hi Marc
Thank you very much for your quick reply.
I have implemented your suggestion above. However, it doesn't seem to work on my end. The below shows how it looks.
I would like to have the Original Estimate summarized in the red circle below.
I would be happy if you could help me further on this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What does the audit log of the rule provide as feedback?
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.
What is the message, you get when an error is occured?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please see below. I would appreciate your feedback to help me solving this.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This will occur when you have the incorrect smart value for the field, as it becomes an empty/null value in the expression.
So if the field has no value, this can occur.
You could set your calculation like this:
{{#=}}{{issue.tasks.original estimate.sum|1}} / 3600{{/}}
The the field always has 1 as default in the calculation, if the field is empty in an issue. When performing the automation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your feedback. However, it still doesn't work.
I got the following error:
I hope this can help you to see what is wrong.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi March
Have you had the opportunity to look into my question above?
/Søren
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Could you try to use: {{#=}}{{issue.tasks.originalEstimateSeconds.sum|1}} / 3600{{/}}
It might be that the divider option is not correct (3600), but this can be adjusted off course.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have typed in the suggested value, but it doesn't summarize. I have the following error code:
If I change "3600" to "60" it summarizes any value to 0m. So It might be something with the "3600" that should be adjusted.
Could you help me further on this?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I would like help with the above issue as well. I get so far, but my error is different to the user above. This is my query (following your example)
This is the error message that I get in the log. I am sure the Time tracking is correct, Original Estimate is on all issue type. Wondering - is the configuration case-sensitive?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Welcome to the Atlassian Community!
If you prefer using a marketplace app, you can try Sum Up Reports for Jira app developed by our team. This app provides various table reports based on the fields you choose.
App Features:
Here is our live demo dashboard where you can see and modify any sample report and play with it.
For further details, you can have a look at Sum Up and Average Reports in Jira Dashboards article.
If you have any questions, feel free to schedule a demo with us.
Hope it helps.
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.