We need to create a formula field on a child object that displays all of the selected values from a multi-select picklist on the parent object.
To create a formula field on a child object that displays all selected values from a multi-select picklist on the parent object, follow the steps below.
This formula uses the INCLUDES() function to check whether each value in the parent object's multi-select picklist is selected. For each selected value, it appends that value as a text string. The & operator concatenates all checked values into a single output.
Replace "parent.multipicklist__c" with your actual parent object and field API names. Replace "Value 1", "Value 2", etc. with your actual picklist values.
IF ( INCLUDES ( parent.multipicklist__c , "Value 1" ), "Value 1; ", null ) & IF ( INCLUDES ( parent.multipicklist__c , "Value 2" ), "Value 2; ", null ) & IF ( INCLUDES ( parent.multipicklist__c , "Value 3" ), "Value 3; ", null ) & IF ( INCLUDES ( parent.multipicklist__c , "Value 4" ), "Value 4; ", null ) & IF ( INCLUDES ( parent.multipicklist__c , "Value 5" ), "Value 5; ", null )
Depending on which picklist values are selected on the parent record, this formula returns results such as:
You can use other separators or use BR() instead of separator characters to list return values on separate lines.
Note: While this formula approach works, there is an open Salesforce Idea to make this standard functionality using the TEXT() function. Visit and vote for the Idea: Support TEXT() function to convert Multi-select picklist to Text
Related Documentation:
Tips for Working with Picklist and Multi-Select Picklist Formula Fields
000384832

We use three kinds of cookies on our websites: required, functional, and advertising. You can choose whether functional and advertising cookies apply. Click on the different cookie categories to find out more about each category and to change the default settings.
Privacy Statement
Required cookies are necessary for basic website functionality. Some examples include: session cookies needed to transmit the website, authentication cookies, and security cookies.
Functional cookies enhance functions, performance, and services on the website. Some examples include: cookies used to analyze site traffic, cookies used for market research, and cookies used to display advertising that is not directed to a particular individual.
Advertising cookies track activity across websites in order to understand a viewer’s interests, and direct them specific marketing. Some examples include: cookies used for remarketing, or interest-based advertising.