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
Jaime BlalockJaime Blalock 

Custom Obect formula for checkbox based on a picklist

Greetings! I have created a custom object we use in conjunction with our standard opporunity object. The custom object has the opportunity related to it. I am trying to create a custom worklow to check a box on the custom object based on the related opporunity but am failing miserably. I would like the system to check the box in ths custom object if the related opportunity stage is equal to either “Closed Lost”, "Cancelled by Prospect", "Cancelled by GIS".


Here's what I thought would work:
Related_Opportunity__r.StageName  ISPICKVAL(StageName, “Closed Lost”, "Cancelled by Prospect", "Cancelled by GIS")

Here's the error:
 Error: Syntax error. Found 'Related_Opportunity__r.StageName'

Here are my API names:
Stage = StageName
Closet Lot = 
Cancelled by Prospect = Cancelled by Prospect
Cancelled by GIS = Cancelled by GIS
 
Wilfredo Morillo 20Wilfredo Morillo 20
You need to evaluate each value using (OR) :

ISPICKVAL(StageName, “Closed Lost”) || 
ISPICKVAL(StageName, “Cancelled by Prospect”) || 
ISPICKVAL(StageName, “Cancelled by GIS”) ||