Skip to main content The new Salesforce certifications experience is live! Visit Trailhead Academy to explore your new certifications homepage.
If Auto Launch Step Dependencies

 

Text(255) OR Auto Launch Field Dependencies (Long Text Area(32768) is not NULL, then the following fields must be NULL.

 

Manually Launch without Dependencies Text(255)

 

Manual Launch Step Dependencies Text(255)

 

Manual Launch Field Dependencies (Long Text Area(32768)

 

VR Condition Formula:

 

AND(

 

!ISBLANK(Auto_Launch_Step_Dependencies__c),

 

!ISBLANK(Auto_Launch_Field_Dependencies__c))

 

OR(

 

ISBLANK(Manually_Launch_without_Dependencies__c), 

 

ISBLANK(Manual_Launch_Field_Dependencies__c),

 

ISBLANK(Manual_Launch_Field_Dependencies__c) 

 

))

 

Error I hit is Syntax error. Extra OR
14 answers
Loading
  1. Mar 23, 2018, 4:31 PM

    Try this = 

    AND(

    OR(

    LEN(Auto_Launch_Step_Dependencies__c) <> 0,

    NOT(ISBLANK(Auto_Launch_Field_Dependencies__c))

    ),

    OR(

    NOT(ISBLANK(Manually_Launch_without_Dependencies__c)),

    NOT(ISBLANK(Manual_Launch_Step_Dependencies__c)),

    LEN(Manual_Launch_Field_Dependencies__c) <> 0

    )

    )

0/9000