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

Validation Rule for making the fields not editable
Hello All,
I have a custom object with the following fields F1,F2 and F3.
I have a requirement to ensure that F1,F2 does not get updated if F3's value is "Processing".
Without using Apex, can we achieve this via validation rules ?
I have a custom object with the following fields F1,F2 and F3.
I have a requirement to ensure that F1,F2 does not get updated if F3's value is "Processing".
Without using Apex, can we achieve this via validation rules ?
Try this validation rule:-
AND(F3='Processing',OR(ISCHANGED(F1),ISCHANGED(F2)))
Thanks
Anil.B
All Answers
You can use javascript validation in visualforce page to check the whether to do action if F3's value is "Processing".
Regards,
Zedroid.
Try this validation rule:-
AND(F3='Processing',OR(ISCHANGED(F1),ISCHANGED(F2)))
Thanks
Anil.B
I figured it out by myself but mines looking slightly different like this
ISPICKVAL(F3,"Processing") &&
(OR(ISCHANGED(F1),ISCHANGED(F2)))