You need to sign in to do that
Don't have an account?

validation rule : Avoid modification of picklist when a check box is true
Hello,
I want to implement a validation rule in case to not et users modify a field.
I have a field picklist with values
custom_picklist__c
Value: ABC, CDB.
I have a Check_box1_c
If the Check_box1_c is true and the custom_picklist__c =ABC, dont let user to modify.
How can i implement this vlaidation rule
thanks you for suggestion
I want to implement a validation rule in case to not et users modify a field.
I have a field picklist with values
custom_picklist__c
Value: ABC, CDB.
I have a Check_box1_c
If the Check_box1_c is true and the custom_picklist__c =ABC, dont let user to modify.
How can i implement this vlaidation rule
thanks you for suggestion
Greetings to you!
Please refer the below formula:
Hope this will help you. If does then mark it as the best answer so it can also help others in the future.
Many Thanks,
Sunil Rathore
All Answers
Greetings to you!
Please refer the below formula:
Hope this will help you. If does then mark it as the best answer so it can also help others in the future.
Many Thanks,
Sunil Rathore
Please refer the below formula:
AND( TestForCheck__c = True,
ISCHANGED( picklist_field) )
Thanks