Skip to main content
Mohankumar B ha fatto una domanda in #Data Management
Hi,

 

How to make editable field will be read only based on picklist value ? it is possible in validation or another else.

 

thanks in advance!!
1 risposta
  1. 1 apr 2020, 08:41
    Hi Mohankumar, 

     

    Yes, you could acheive this with a validation rule with the formula:

    AND(

    ISCHANGED(Editable_Field__c),

    ISPICKVAL(Picklist__c,"Value")

    )

     

    Then chaning the field names and values to fit your example. Does that work?
0/9000