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
Bhagyashri Jadhav 61Bhagyashri Jadhav 61 

Formula field for picklist field

I have a business unit picklist field on the account. I wanted to create a formula field on a custom object which related to the account. I am creating a formula but it's throwing an error as "Field BU__c is a picklist field. Picklist fields are only supported in certain function"

Can you please help
Best Answer chosen by Bhagyashri Jadhav 61
Sai PraveenSai Praveen (Salesforce Developers) 
Hi Bhagyashri,

For picklist values you have to use IsPickVal() or Text() function.

Please find the below examples for the same.
https://help.propertybase.com/hc/en-us/articles/115000302912-Validation-Example-Rules

let me know if you need any help.
If this solution helps, Please mark it as best answer.

Thanks,
 

All Answers

Sai PraveenSai Praveen (Salesforce Developers) 
Hi Bhagyashri,

For picklist values you have to use IsPickVal() or Text() function.

Please find the below examples for the same.
https://help.propertybase.com/hc/en-us/articles/115000302912-Validation-Example-Rules

let me know if you need any help.
If this solution helps, Please mark it as best answer.

Thanks,
 
This was selected as the best answer
Bhagyashri Jadhav 61Bhagyashri Jadhav 61
Thank you this is working for perfectly fine.