You need to sign in to do that
Don't have an account?
validation rule...
Hi ALL,
I have an object X__c where I have 3 fields f1__c(Email), f2__c, f3__c(Email). The requirement is if f1__c & f3__c are equal f2__c can be editable else if not equal then f3__c only can edit the field not f2__c.
Regards
I have an object X__c where I have 3 fields f1__c(Email), f2__c, f3__c(Email). The requirement is if f1__c & f3__c are equal f2__c can be editable else if not equal then f3__c only can edit the field not f2__c.
Regards
Try like this ,check and change the code what you need....
IF( f1__c == f3__c, ISCHANGED(f2__c) , ISCHANGED(f3__c))