AND(
ISPICKVAL( Onboarding_Method__c , "Go-Live") ,
(CONTAINS( Name , "Live")))
2 answers
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"))
)