I am working on a validation rule on the Opportunity object. The goal is to bypass a validation rule if an item from a Multi-Select picklist is selected, otherwise the code should fire
Here's what I have so far - everything works except the exception portion - NOT(CONTAINS('Campaign_Tactic__c','Call Monitoring')))
So the validation rule should fire unless the Call Monitoring multi-select is chosen.
The Validation Rule should prevent an Opportunity Save if:
- Opportunity Record Type = True
- Opportunity Stage = Closed Won or Proposal Request
- Landing Page Setup Field = blank/no data
Campaign Tactic Multi-Select field = does not contain the Call Monitoring Option
AND ( RecordType.DeveloperName = "New_Opportunity", OR ( ISPICKVAL(StageName, "Closed Won"), ISPICKVAL(StageName, "Proposal Request") ), AND ( ISBLANK(TEXT(Landing_Page_Setup__c)) ), (!CONTAINS('Campaign_Tactic__c','Call Monitoring')) )