Can you just select the first name from 'displayname'
I am trying to add it in a rule when it adds a comment
It shows the full name, I just want the first name
Is this possible
Hi @SGC Associates Ltd and welcome to the Community!
You can use the split function in smart values to parse the returned displayname. Assuming your you want to address the reporter and user display names are 'firstname' "<space>" 'lastname', the following should return the reporter's first name
{{reporter.displayName.split(" ").first}}
As a reference for smart values for text fields, see this support article.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.