I have a Team managed project in JIRA.
It has 2 list type custom fields - Impact and Probability, which have numbers in the dropdown.I would like to multiply the selected value of the 2 custom fields and save them in another field (Score)Score = Impact * Probabilty.However, I am unable to make this work using Automation and Smart Values. Please help! Thank you in Advance.
You can multiply two fields in Automation using (Field1 smart value) * (Field2 smart value), but you'll want to make sure you're surrounding your expression with {{#=}} {{/}} so that Automation recognizes it as a math expression.
Here is what the final expression should look like:
{{#=}}{{issue.Field1.value}} * {{issue.Field2.value}}{{/}}
So based on the fields you listed, you should be able to use the following expression to set the Score field in the Edit automation action:
{{#=}}{{issue.Impact.value}} * {{issue.Probability.value}}{{/}}
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.
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.