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
chandu kumarchandu kumar 

i have three text field called first name,middle name,last name.i want to make them unique using admin.how?


i have three text field called first name,middle name,last name.i want to make them unique using admin.how?
Richard Jimenez 9Richard Jimenez 9
Hi Chandu,

I'm not sure why you would want to do this... but anyway....
  • If you want each field individually to be unique set the unique property on the field.
  • If you want the sum of the fields to be unique you can create another field called full name and set as unique. Create a workflow rule that updates the full name with a concatenation of the 3 fields when any of the value is changed and are all populated (you may need to make the field mandaratory).
Cheers,
Richard