You need to sign in to do that
Don't have an account?
Terry_0101
Prevent certain picklist values from changing
This is not working below as a user can still change a picklist value from Business (Legal) to another value.
1. How to prevent changing from the these values belowin italics?
2. Also, how to prevent users from choosing these values?
AND (
CASE( Type,
"Business (Legal)", 1,
"Retail (Apparel)",1,
0) = 1,
PRIORVALUE( Type ) <> "Business (Legal)",
PRIORVALUE( Type ) <> "Retail (Apparel)",
ISCHANGED(Type),
NOT(
OR(
$Profile.Id = "00000000", /*sys admin*/
1. How to prevent changing from the these values belowin italics?
2. Also, how to prevent users from choosing these values?
AND (
CASE( Type,
"Business (Legal)", 1,
"Retail (Apparel)",1,
0) = 1,
PRIORVALUE( Type ) <> "Business (Legal)",
PRIORVALUE( Type ) <> "Retail (Apparel)",
ISCHANGED(Type),
NOT(
OR(
$Profile.Id = "00000000", /*sys admin*/
Another issue could be that your profile id is incorrect (for instance it differs between production and sandbox).
Good luck!