You need to sign in to do that
Don't have an account?

how to concatinate picklist value and multipicklist value that will be auto populated in a field
i have source pick list contains source 1,source 2
multi picklist contains mps1,mps 2 i want to show in one field
multi picklist contains mps1,mps 2 i want to show in one field
You can try this :
IF(INCLUDES( Multi_Picklist_1__c , " mps1"), "source1", NULL) + BR() +
IF(INCLUDES( Multi_Picklist_2__c , " mps2"), "source2", NULL)
Thank You,
www.nubeselite.com
Development | Training | Consulting
Please mark this as solution if your problem is solved.