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
Manoj DegaManoj Dega 

Formula Field Issue

Hi Folks,

I have a picklist Countries__c in that values
United States US,
United Kingdom UK,
India IN these are the picklist values.
Now My Scenario is I want to select United Kingdom UK it will be populated as UK in another Formula field.

Thanks in advance.

Can you Please Tell me how to make formula for this...?
 
Best Answer chosen by Manoj Dega
Shashikant SharmaShashikant Sharma
As your code will always be of 2 Character and placed in most right side this will work for you:
 
RIGHT(TEXT(Countries__c), 2)

 Thanks
Shashikant

All Answers

Shashikant SharmaShashikant Sharma
As your code will always be of 2 Character and placed in most right side this will work for you:
 
RIGHT(TEXT(Countries__c), 2)

 Thanks
Shashikant
This was selected as the best answer
Manoj DegaManoj Dega

Thank you Shashi,

Its working Fine

Shashikant SharmaShashikant Sharma

Glad that it helped you :)