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
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
)
)