How to Create Formula Field To Check Multiple Values on Multiselect Picklist?

How to Create Formula Field To Check Multiple Values on Multiselect Picklist in Salesforce

We can be used OR operator and INCLUDES method to create formula field based on Multiselect Picklist to check multiple values in Salesforce.

Sample Formula:

OR(

INCLUDES( Topics__c, ‘Apex’),

INCLUDES( Topics__c, ‘Visualforce’),

INCLUDES( Topics__c, ‘Aura’),

INCLUDES( Topics__c, ‘LWC’)

)


Follow Us

Posted By : Sudeer Kamat Date :

view_module Related

  • Contact Intelligence View In #SalesforceWinter24ReleaseContact Intelligence View In #SalesforceWinter24Release
  • Get Started with Customer Onboarding Faster In Financial Services Cloud In #SalesforceWinter24ReleaseGet Started with Customer Onboarding Faster In Financial Services Cloud In #SalesforceWinter24Release
  • Scan Your Solution with Ease Using Salesforce Code Analyzer Visual Studio Code Extension (Beta) In #SalesforceWinter24ReleaseScan Your Solution with Ease Using Salesforce Code Analyzer Visual Studio Code Extension (Beta) In #SalesforceWinter24Release
  • Use Third-Party Web Components in LWC (Beta) In #SalesforceWinter24ReleaseUse Third-Party Web Components in LWC (Beta) In #SalesforceWinter24Release
  • Save a Flow Without Configuring Some Elements In #SalesforceWinter24ReleaseSave a Flow Without Configuring Some Elements In #SalesforceWinter24Release

label Labels

Comments 0