Loading
시스템 관리자에 대한 피싱 방지 MFA 및 전 직원사용자 MFA 적용 안내 더 많이 읽기
현재 다수의 문의가 발생하여 대응에 지연이 발생하고 있습니다.더 많이 읽기

Formula field based on picklist 'multi-select' field values.

게시 일자: Aug 26, 2026
상세 설명

In Salesforce, you cannot create a formula field that references a Picklist (Multi-Select) field value using the API name of the field alone. To display the selected values of a multi-select picklist in a formula field, you need to build the formula using the INCLUDES function.

솔루션

This resolution explains how to build a Salesforce formula field that displays the selected values of a Picklist (Multi-Select) field, since referencing the field by its API name alone is not supported.

Sample Formula

Here is a sample formula you can build on:

IF(INCLUDES( Multi_Picklist_field__c , "Apple"), "Apple" + BR(), NULL) +
IF(INCLUDES( Multi_Picklist_field__c , "Banana"), "Banana" + BR(), NULL) +
IF(INCLUDES( Multi_Picklist_field__c , "Coconut"), "Coconut", NULL)

This formula checks the Multi_Picklist_field__c field for each possible value ("Apple", "Banana", "Coconut") using the INCLUDES function, and if that value is selected, includes it on its own line in the formula field's output.

Expected Result

If a record has all three values selected on the multi-select picklist, the formula field displays:

  • Apple

  • Banana

  • Coconut

When to Use This Approach

This approach is best suited for picklists with a small number of values, since each value requires its own INCLUDES condition in the formula. For picklists with many values, consider Salesforce's other supported approaches for working with multi-select picklists in formulas.

Knowledge 기사 번호

000381324

 
로드 중
Salesforce Help | Article