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
Rahul H 4Rahul H 4 

I am looking for populating my contact name with name <> insta

Contact name field is a validation rule as  
AND(ISCHANGED(Status), 
ISBLANK(ContactId))

I want to include name <> insta 

can u pls provide me correct syntax 
Raj VakatiRaj Vakati
TRy this
If not contains 
AND(ISCHANGED(Status), 
ISBLANK(ContactId)
NOT(CONTAINS(Name,"insta"))
)

OR
If contains 
AND(ISCHANGED(Status), 
ISBLANK(ContactId)
CONTAINS(Name,"insta")
)
jhon drakejhon drake
Thanks for sharing good job also check http://instazara.com/