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
AbAb 

check a formula field on object depending on the value of pick-list in same object.

Hello,

I have a picklist value "XYZ", "PQE",

If ( picklist value ==  "XYZ")
 then i want to create aformula with value CHECKED.

If above is not possible then it is unchecked.

How can i achieve this ?

thanks for suggestion !
Best Answer chosen by Ab
RKSalesforceRKSalesforce
We can achieve this by following way:
Create a Formula field with checkbox as a return type. Insert following code  for formula
IF( (ISPICKVAL(Picklist_Field, 'XYZ')), true , false)

Mark as a best answer if helped.