You need to sign in to do that
Don't have an account?
thusker
Need Help with Validation Rule - Return Error Based on Probability %
Hi . . . could use some help on creating a formula (I suck at them). Management wants to open up the Probability % field to be editable . . . so reps can override the amount that is set by default through Stage selection. I think it's a bad idea, but if they insist I want to be able to restrict users to only being able to enter the % values we already have. How would I create a validation rule that would allow users to enter 0,10,50,70,80 90 or 100% but not allow them to save the record with anything else? I want to keep them from entering 39% and garbage like that.
Thanks in advance!
Probability=0,
Probability=0.1,
Probability=0.5,
Probability=0.7,
Probability=0.8,
Probability=0.9,
Probability=1
))
I tested this in a developes org and it works great. Ran into a problem in production where a couple users reported getting the error when they had a correct % entered (these are people who actually cannot edt the field anyway--it defaults based on the stage they pick). So not sure why that would happen but will have to look into it. Wonder if maybe they had the record open when I activated the rule and there was some kind of "hiccup" that generated the error. Doesn't make sense that a correct value from the ones listed in the rule would trigger the error.
Anyway . . . thank you again for the help! This will be great if I can get it to work without any issues.
ISNULL(Probability),
Probability=0,
Probability=0.1,
Probability=0.5,
Probability=0.7,
Probability=0.8,
Probability=0.9,
Probability=1
))