Hi everyone,
I am trying to get the index of a custom field value.
What will be the right syntax?
{{issue.CustomFieldName.value.id}}
{{issue.CustomFieldName.charAt(0).isNumeric}}
Selection of the custom field name is 1-xxxx
Still not working. How to get the value in numeric format???
{{#=}}IF({{issue.CustomFiledName.value.startsWith("3")}},3,IF({{issue.CustomFiledName.value.startsWith("2")}},2,IF({{issue.CustomFiledName.value.startsWith("1")}},1,0))){{/}}
Fieldname= 1-first value,2-second value,3-third value
It works finally