I am building an automation with a "Create lookup table" and on my lookup table I have the pair users and a value, like the exampleTable below:
Key -> Value
Odilon Nagay -> 5
John Doe -> 6
Mary Jane -> 3
The key corresponds to an "assignee.diplayName", but when I use it in the get formula to get the key of the lookup table it is not working. Here is my formula:
{{#=}}{{exampleTable.get(issue.assignee.displayName)}}*{{issue.Story Points}}{{/}}
If I change the formula to the below it works:
{{#=}}{{exampleTable.get("Odilon Nagay")}}*{{issue.Story Points}}{{/}}
But I want this formula to be dynamic and change the get based on assignee.displayName.
My goal is to "Edit issue field" with a dynamic formula that uses keys from a lookup table and these keys are assignee's display names.
Thank you!