You need to sign in to do that
Don't have an account?
Ossie
Prevent user from editing a record if field contains specific value
Hi,
Is it possible to prevent users from editing a record based on a specfic value in a field?
For example users should not be able to edit a opportunity record if Stage equals 'Won OR Lost'?
Would appreciate any help!!
Is it possible to prevent users from editing a record based on a specfic value in a field?
For example users should not be able to edit a opportunity record if Stage equals 'Won OR Lost'?
Would appreciate any help!!
Yes you can do this using Validation Rule.
You can create Validation Rule on Opportunity (Setup --> Customize --> Opportunities --> Validation Rule)
Create New Validation rule with following formula :
If this solves your problem, kindly mark it as the best answer.
Thanks,
Vatsal
All Answers
Yes you can do this using Validation Rule.
You can create Validation Rule on Opportunity (Setup --> Customize --> Opportunities --> Validation Rule)
Create New Validation rule with following formula :
If this solves your problem, kindly mark it as the best answer.
Thanks,
Vatsal
create the validation rule on Opportunity by using the following formula
(OR(ISPICKVAL(PRIORVALUE(StageName),'Closed Won'),ISPICKVAL(PRIORVALUE(StageName),'Closed Lost')))
I am verified this formula 'Through error message as u like ex:Record is in ReadOnly mode'
check your self if it correct then marks it best answer
worked perfectly.