function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sunil PalSunil Pal 

Formula Field

Hi 

I have to update multiselect picklist on contact on the basis of account picklist value. 

I have made formula field to contact  , but it is not working please give some suggestion so that it will work

IF ( INCLUDES (Account.Type , "Attorney" ), "Attorney; ",null )

 

Account Type is field and Attorney is value

  

Its showing Error: Field type is a picklist  fileds. Picklist fields are only supported in certain function

IF ( INCLUDES (Account.Type , "Attorney" ), "Attorney; ",null )

 

Thanks

 

@anilbathula@@anilbathula@
Hi

Instead of includes use ispickval because account type is picklist .
includes u can onlu use for multi select pick list.

IF ( ISPICKVAL (Account.Type , "Attorney" ), "Attorney; ",null )

Sunil PalSunil Pal

Thanks anilbathula Its working