function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Laura BrewerLaura Brewer 

Enforce Account Name as start of Oppty Name

Can someone help me out with this Workflow? I'm trying to enforce an Oppty Naming Convention of ACCOUNT NAME: OPPTY NAME.

Workflow Rule Detail
Evaluation Criteria - Evaluate the rule when a record is created, and every time it’s edited
Description - Enforce Opportunity Naming Convention
Rule Criteria - Opportunity: Opportunity Name EQUALS NOT(CONTAINS( Name,Account.Name ))

Then specified Field Update to Oppty Name based on the following formula:  Account.Name & ": " & Name

Doesn't seem to be working!  Any ideas?
Best Answer chosen by Laura Brewer
BalajiRanganathanBalajiRanganathan
Check if you have,  Run this rule if formula evaluates to true instead of default criteria are met
use formula as :  NOT(CONTAINS(name,Account.Name))