I'm using Plans (advanced roadmaps) in Jira for project management. for some issues, on different levels (Epic, story or subtask) we have costs (both budgets and actuals) I created 2 different custom fields. In one the budgets are logged and in the other one the actuals.
I have made some progress and have an automation rule that works almost.
The automation works. It selects the issues I like to roll-up, it does the math correct, but it seems that there is something wrong with the configuration of the field, although it is a number and all fields get a default value of 0; I get the following message:
"Edit issue
Hi @jeroen_wilmes ,
Number field values can only contain a single decimal point, so the second decimal in "7.0." is more than likely causing an issue.
Let us know if that clears things up!
Hi Bryce,
That is what I think as well, that causes the problem. However in the field in fill in "7" the smartvalue math makes 7.0.
I use:
{{lookupIssues.customfield_15210.sum}}.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm can you try removing the decimal at the end of your smart value expression?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I changed to:
{{lookupIssues.customfield_15210.sum.round}}.
was a wild guess to just add it after the sum, but it seems to work.
thanks a lot.
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.