Hi everyone!
I want to create an automatic rule for the following custom fields: aaa, bbb, ccc, ddd, eee, fff, ggg, hhh, iii, jjj).
The formula I would like to apply is as follows:
(aaa*bbb)+(ccc*ddd)+(eee*fff)+(ggg*hh)+(iii*jj).
My rule works for the first two elements: (aaa*bbb)+(ccc*ddd)
But it doesn't work if I include the remaining part.
{{#=}}{{issue.aaa}} * {{issue.bbb}}+{issue.ccc} * {{issue.ddd}}+{{issue.eee}} * {{issue.fff}}+{issue.ggg}} * {{issue.hhh}}+{issue.iii}} * {{issue.jjj}}{/}}
What is wrong with this formula?
Thank you in advance.