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

Error: Field Sales_Org__c is a picklist field. Picklist fields are only supported in certain functions. Tell me more
checkbox should be checked if the logged in user sales org and Product Sales org matches. sales org is picklist feild in user object and multislect feild in product object . i have written below formula but getting error
formula :
IF($User.Sales_Org__c = Sales_Org__c , true, false)
error :
Error: Field Sales_Org__c is a picklist field. Picklist fields are only supported in certain functions. Tell me more
formula :
IF($User.Sales_Org__c = Sales_Org__c , true, false)
error :
Error: Field Sales_Org__c is a picklist field. Picklist fields are only supported in certain functions. Tell me more
All Answers
Can you confirm if Sales_Org__c in User object is also a picklist field?
Thanks,
It may not be possible with single field as we have to use Includes() for multiselect picklist but it only accepts text literal for comparision. But here it is not Text literal but seperate field.
Thanks,
Like this