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
Arunkumar KathirArunkumar Kathir 

Name field uniqueness

Can we make Name (Std field) unique?

souvik9086souvik9086

We cannot make this field unique. What we can do is to create a custom field and create a workflow field update to update this field from the name field.

 

You can refer

http://boards.developerforce.com/t5/Apex-Code-Development/how-can-i-make-account-name-field-unique-with-out-using-trigger/td-p/453609

 

If this post is helpful please throw Kudos.If this post solves your problem kindly mark it as solution.

Thanks

Mayank_JoshiMayank_Joshi
Validation Rule with Ischanged() and prior value () funtions can make help in restricting duplicate value .
sandeep@Salesforcesandeep@Salesforce

You can not make it Uniqe but by applying Trigger's rule you can implement this feature.