How to Display Name + UserID eg. Abel Tutor(abel.tutor) in this format in reference field ?

contactvwak
Tera Contributor
 
1 ACCEPTED SOLUTION

Chaitanya ILCR
Mega Patron

HI @contactvwak ,

 

you have update the dictionary (name)

add the script at the end 

var firstName = current.getValue('first_name');
var lastName = current.getValue('last_name');
var userName = current.getValue('user_name');

(firstName ? firstName + ' ' : '') + (lastName ? lastName + ' ' : '') + (userName ? '(' + userName + ')' : '');

ChaitanyaILCR_0-1752732195655.png

 

Please mark my answer as helpful/correct if it resolves your query.

Regards,
Chaitanya

 

View solution in original post

5 REPLIES 5

GlideFather
Tera Patron

The description field should be mandatory, change my mind! 😄

 

@contactvwak do you mean to see these values in a reference fields in the list upon selection?

———
/* If my response wasn’t a total disaster ↙️ drop a Kudos or Accept as Solution ↘️ Cheers! */