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
Shree KShree K 

How to make a field editable based on the Picklist value of another field through configuration?

Hi All,
Is there any way to make a field editable based on the Picklist value of another field through configuration (without any apex or Vf code)?
Ex: "Primary" and "Secondary" are picklist values of field SGT request, if Primary is selected Comments(text) field should become editable so that users can enter text and save.

Thanks
Shree
Raj VakatiRaj Vakati
You can able to do it validation rule even though its not looks ready only you can 't able to change the value  like below
 
AND(
     ISPICKVAL(Field B, 'Full'),
     ISCHANGED(Field A)
          
     )