You need to sign in to do that
Don't have an account?
Terry_0101
How to build a Formula for multiple picklist values?
Hi all,
field: Status
picklist values: new, open, closed
If status equals either new or open, then add a checkmark to another field
I have so far:
IF(ISPICKVAL(case_status__c, "new" ),"Yes","No")
field: Status
picklist values: new, open, closed
If status equals either new or open, then add a checkmark to another field
I have so far:
IF(ISPICKVAL(case_status__c, "new" ),"Yes","No")
You have to use Includes function. the link below will help
https://help.salesforce.com/apex/HTViewHelpDoc?id=tips_for_using_picklist_formula_fields.htm&language=en_US
IF(OR(TEXT(case_status__c) = 'New',TEXT(case_status__c) = 'open'),'Yes','No')
Create a State(Multipicklist) Values(KA,TN,HP,JK,GO,GT,AS,WB)field on Student object. Write a formula to populate Region if State value KA,TN populate “SOUTH”,HP,JK populate “NORTH”,GO,GT populate “WEST” else “EAST”.