Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
How can i create a formula field where it sholud get value from a multiselectpicklist.
Any help!!
Hi,
You have to use includes method inside the formula while working on multipicklist.
Try the below code as reference:if( INCLUDES(Multipicklist__c , ‘abc') ,’abc','1') + ';'+if( INCLUDES(Multipicklist __c , xyz') ,’xyz’,'2')
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
Thanks Jain, i was looking the same got it, Used as per my requirement.
Hi,
You have to use includes method inside the formula while working on multipicklist.
Try the below code as reference:
if( INCLUDES(Multipicklist__c , ‘abc') ,’abc','1') + ';'+
if( INCLUDES(Multipicklist __c , xyz') ,’xyz’,'2')
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
All Answers
Hi,
You have to use includes method inside the formula while working on multipicklist.
Try the below code as reference:
if( INCLUDES(Multipicklist__c , ‘abc') ,’abc','1') + ';'+
if( INCLUDES(Multipicklist __c , xyz') ,’xyz’,'2')
Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.
Thanks Jain, i was looking the same got it, Used as per my requirement.