Sum of all numeric values present in a custom form field using collection
Hi All,
I have a similar situation where I need to check a numeric field of a Custom form which is created at issue level.
valueexpression=IF({DE: Audit Type}="Design" && {DE: Audit Phase}="Post-go-live audit", {DE: PROD Audit Error Count})
listmethod=nested(issues).lists
valueformat=HTML
displayname=Total PROD Errors
textmode=true
type=iterate
Here I'm getting the output something like this; 4,6,8
However, I would like to sum all the values i.e., 4+6+8 = 18.
Would appreciate any help on this matter.