Hello,
I would like to use a smart value charcter to do some comparisons, but I cannot get a single char out of a dropdown field smart value.
I have a single select dropdown menu. All of the options start with a number 1-5 and I want to be able to edit a Issue via Automation, when Dropdown 1 = 5 and Dropdown 2 = 3.
The comparison part is not the problem, but I can't seem to get the Number I need.
So far I tried:
{{issues.customfield_id.charAt(0)}}
{{issues.customfield_id.toString.charAt(0)}}
{{issues.customfield_id.left(0)}} and {{issues.customfield_id.toString.left(0)}}
as well as {{issue.customfield_id.substring(0,1)}}.
I think I might be using the wrong syntay, or something changed bc. I know that it worked some time ago (which I unfortunately have no backup of)
I found another post made ages ago, and for everyone else with this problem: The solution with select lists is .getValue.charAt()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.