Skip to main content
Here is the formula I am trying to use, but even when Go-Live is selected, the validation does not fire

 

AND( 

 

ISPICKVAL( Onboarding_Method__c , "Go-Live") , 

 

(CONTAINS( Name , "Live")))
2 answers
  1. Feb 12, 2018, 3:23 PM

    Can you try this = 

    AND(

    ISPICKVAL(Onboarding_Method__c, "Go-Live"),

    NOT(CONTAINS(LOWER(Name), "live"))

    )

     

    If that doesn't work then you should try - 

    AND(

    ISPICKVAL(Onboarding_Method__c, "Go_Live"),

    NOT(CONTAINS(LOWER(Name), "live"))

    )

0/9000