Skip to main content
T O ha preguntado en #Data Management
Hi

 

I have created the below validation rule, however the error is still firing on the field. Is there something not right on the rule?

 

Thanks

 

AND( 

 

Request_for_an_SA__c = TRUE, 

 

ISBLANK( SA_Signatory__c ), 

 

OR( 

 

RecordType.Id = "01224000000ENsM", 

 

RecordType.Id = "012b0000000DjUB", 

 

OR( 

 

TEXT( Sales_Stage__c )="Proposal",TEXT( Sales_Stage__c )="Ops Compliance Check",TEXT( Sales_Stage__c )="Scoping",TEXT( Sales_Stage__c )="Negotiate", 

 

AND( 

 

DATEVALUE( CreatedDate ) > DATE(2015, 10, 01) 

 

 

)))
4 respuestas
  1. 19 nov 2015, 12:29
    Hi,

     

    Please try the below

    AND(

    Request_for_an_SA__c = TRUE,

    ISBLANK( SA_Signatory__c ),

    OR(

    RecordType.Id = "01224000000ENsM",

    RecordType.Id = "012b0000000DjUB"

    ),

    OR(

    TEXT( Sales_Stage__c )="Proposal",

    TEXT( Sales_Stage__c )="Ops Compliance Check",

    TEXT( Sales_Stage__c )="Scoping",

    TEXT( Sales_Stage__c )="Negotiate"

    ),

    DATEVALUE( CreatedDate ) > DATE(2015, 10, 01)

    )

     

     
0/9000