function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
AnilAnil 

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!
Best Answer chosen by Anil
Rakesh ARakesh A
Hi Anil, 
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

Rakesh ARakesh A
Hi Anil, 
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
This was selected as the best answer
AnilAnil
That's Perfect. Thank you Rakesh!!!!!