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 件の回答
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?