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
ArmanMArmanM 

Help with picklist formula

Hi, 

I am trying to create a custom picklist on a custom object, this picklist will hold three names (Person A, Person B, and Person C). This field will only show or only be editable if the creator of the record equals User 1.

How can go about creating this?

Thanks !  
SFDC RJSFDC RJ
Hi @AcctMgt,

for rendering picklist field use this in your vf page,
<apex:inputField value="{!picklist} " rendered="{!Owner=='user1'}'"/>
This may help you.
Thanks
ArmanMArmanM
Hi SFDC RJ,

Thanks for your response but this isn't a vf page, it is a default custom object that we created.