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
GavinWillGavinWill 

Only be able to pick items in picklist if specific member / group

Hi there, I have a picklist with quite a few values. I need to let everyone see the values but only certain groups have permissions to select any of the values and tighten up access so that everyone else can only select a small amount. I did a similar thing with a checkbox ( IsPublishedInPublicKb = True) && (NOT(OR(Reviewed_By_User__r.Profile.LastModifiedBy.Username="username@email.com"))) but I dont appear to have a last modified for this picklist. any ideas or suggestions appreciated. Many Thanks Gavin
yudhvirmoryudhvirmor

( OR(ISPICKVAL(FieldName,Picklist_value1),ISPICKVAL(FieldName,Picklist_value2),ISPICKVAL(FieldName,Picklist_value3)) && (NOT(OR(Reviewed_By_User__r.Profile.LastModifiedBy

.Username="username@email.com")))
GavinWillGavinWill
Thanks yudhvirmor, I modified that slightly and appears to be working well. Thanks for your help.