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

Creating a Formula Checkbox Field
I'm trying to create a Formula Checkbox field and would like to be false if another Field that is a Picklist has a value that has been selected.
Example:
Picklist Field is Stage
IF Stage value is Closed Won, the Checkbox Formula field is False.
IF Stage Value is Signed, the Checkbox Formula field is False.
If someone can help. Not sure how to create a checkbox formula field.
Example:
Picklist Field is Stage
IF Stage value is Closed Won, the Checkbox Formula field is False.
IF Stage Value is Signed, the Checkbox Formula field is False.
If someone can help. Not sure how to create a checkbox formula field.
If( text(PicklistField__c) =='Closed Won' || text(PicklistField__c) =='Signed', false ,true)
All Answers
If( text(PicklistField__c) =='Closed Won' || text(PicklistField__c) =='Signed', false ,true)
You just need to create a new formula field of the type "Checkbox" with the below formula.
Use the insert field option to use the right API names of the fields.
Also, thanks Akhil for answering, they both work, but i can only select one best answer
How can I get this
CASE(StageName, "Closed Won",1, "Signed",1, 0) = 0
Using the above formula , am trying to acheive similar requirement . However , would like the formula checkbox to return TRUE , if the following behaivours are met
please see what i have -
Data TypeFormula
IF(
AND(
CASE(SBQQ__Opportunity2__r.Zift_Deal_Approval_Status__c,
"Approved",1,
1) = 0,
SBQQ__Opportunity2__r.Zift_Registered_Deal__c
),
TRUE,
FALSE
)