Skip to main content
Christine Saxon ha fatto una domanda in #Data Management
I'm getting an error, can someone help -

 

Formula name is Checklist Required

 

Based on the opportunity stage a check list might be required

 

When it is required then I need to check whether or not the check list field has a value, if not - the result would be "1" (yes)

 

IF(CASE( StageName , "Qulaified", 0, "Discovery", 0, "Proposal", 1, "Pending Contract", 1,0),  ISBLANK(Checklist__c) 0, 1))
8 risposte
  1. 1 giu 2012, 16:47
    Didn't realize it was a text field not a checkbox. 

     

    IF(

     

    AND(

     

    OR(

     

    ISPICKVAL(StageName,"Proposal"),

     

    ISPICKVAL(StageName,"Pending Contract")

     

    ),

     

    ISBLANK(Checklist__c)

     

    ),

     

    1,

     

    0

     

    )
0/9000