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
RakeebRakeeb 

How to define unique value for picklist ?

Hi,can any one let me know How to define unique value for picklist ?

Ankit AroraAnkit Arora

You can not define unique value for picklist.

 

But yes if you want all records to have different value of picklist then you can do this by validation, but that doesn't make any sense regarding business implementation.

 

 

Thanks

Ankit Arora

Blog | Facebook | Blog Page

RakeebRakeeb

Hi Ankit, But i have 3 custom fields(Picklist) like

    • Partner Region
    • Partner Type
    • Partner Category   and each field contain 4 values so how can i validate kindly let me know with example asap

Thank you

skodisanaskodisana

Hi,


Create a new field with Text data type and Make that field as UNIQUE.

Write a workflow on the same object and update the newly created field with

Partner_Region__c&''&Partner_Type__c&''&Partner_Categor__c using formula editor.

 

 

Thanks,

Srikanth.K