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

how do I make a field use picklist values only?
I want to make a field use the picklist values only. It has a button on the right that shows the picklist values, but the user can enter anything.
unless you have a Visual force page, validation rule is the best way to proceed.
You can use this VR as a template (this is out of the box, you need to change the values if you modify the OOTB subjects):
AND(
Subject <> "Call",
Subject <> "Email",
Subject <> "Send Letter",
Subject <> "Send Quote",
Subject <> "Other")
The VR is located at Setup/Build/Customize/Activities/Task Validation Rules
Error location is Field: Subject
Error message: Please choose one of the pre-defined subject
Thx.
All Answers
Thx.
Thanks for your help!
NOT(OR( Subject = "New", Subject = "Old", Subject = "Rejected"))
unless you have a Visual force page, validation rule is the best way to proceed.
You can use this VR as a template (this is out of the box, you need to change the values if you modify the OOTB subjects):
AND(
Subject <> "Call",
Subject <> "Email",
Subject <> "Send Letter",
Subject <> "Send Quote",
Subject <> "Other")
The VR is located at Setup/Build/Customize/Activities/Task Validation Rules
Error location is Field: Subject
Error message: Please choose one of the pre-defined subject
Thx.
Will, are you good?
If yes, please mark the question as resolved by choosing best answer (you can only choose 1 best answer).
But you can give thumbs up to any/all of the replies
Thx