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
Adrian-EAdrian-E 

Custom Formula to Populate Value from Picklis

I have a picklist on a parent field with dropdown options from 1 through 50.

 

I want to have a formula on the child account which copies the same selection from the parent.

I have tried combinations of CASE, ISPICKLIST, OR and evrey other option to no avail.

 

Any suggestions? 

Best Answer chosen by Admin (Salesforce Developers) 
NPMNPM

No magic bullet on this one.  Getting the vales from a Picklist to a text formula is a tedious, inefficient process.   Vote for Please get this Done Soon although it has been an issue for a long, long time.  And it can be a maintenance nightmare if your picklist values change.

 

I think your formula would need to be a CASE with 1 through 50 repeated.

 

CASE( Parent.picklist_field_name , "1","1", "2","2", all the way to 50

 

 

All Answers

NPMNPM

No magic bullet on this one.  Getting the vales from a Picklist to a text formula is a tedious, inefficient process.   Vote for Please get this Done Soon although it has been an issue for a long, long time.  And it can be a maintenance nightmare if your picklist values change.

 

I think your formula would need to be a CASE with 1 through 50 repeated.

 

CASE( Parent.picklist_field_name , "1","1", "2","2", all the way to 50

 

 

This was selected as the best answer
Adrian-EAdrian-E

 Worked like a charm!Thanks a million!

 

I've also voted for the idea posted above and will urge my colleagues to add their votes their too.

 

Once again, thanks! 

Kent ManningKent Manning
I voted for the idea also.  Needs to be done.:smileyhappy: