You need to sign in to do that
Don't have an account?

Three Type Of Names!
Hi everyone!!!!!!
Common Name (Alias)" + "Registration type" + " Full Country Name"
Alias Name is Sree+ Common+England
My requirment is Sree on England----> This is result
But In registration type Last two letters has to display and also it is picklist field.
How can I do this?
Thank you!
Common Name (Alias)" + "Registration type" + " Full Country Name"
Alias Name is Sree+ Common+England
My requirment is Sree on England----> This is result
But In registration type Last two letters has to display and also it is picklist field.
How can I do this?
Thank you!
If you want to display last two characters of Picklist 'Registration type', you can use as below.
RIGHT(Text(Registration_type__c) , 2)
Chhoose this answer if it helps
All Answers
If you want to display last two characters of Picklist 'Registration type', you can use as below.
RIGHT(Text(Registration_type__c) , 2)
Chhoose this answer if it helps