Skip to main content
Mohankumar B 님이 #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개
  1. 2020년 4월 1일 오전 8: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