Skip to main content The Trailblazer Community will be unavailable from 2/1/2025 to 2/2/2025. Please plan your activities accordingly.
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
1 answer
  1. Jan 18, 2019, 2:00 AM
    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)

    )

     
0/9000