You need to sign in to do that
Don't have an account?
When creating new records, users should be prevented from selecting a value in the status picklist
When Users are creating a new Case record, I want to prevent the user from saving the Case record if they select 'Re-Open' in the Status field.
Can I use the (ISNEW) function to indicate that a new record is being created. Help with syntax would be appreciated!
AND
(ISNEW(),
(ISPICKVAL(Status, "Re-Open"))
NOT(IsClosed)
Can I use the (ISNEW) function to indicate that a new record is being created. Help with syntax would be appreciated!
AND
(ISNEW(),
(ISPICKVAL(Status, "Re-Open"))
NOT(IsClosed)
If the requirement is to simply stop a user from creating a New case with the Status as "Re-Open" then the following Validation Rule on the Case object will do the trick for you: I hope this helps; do let me know how it works out. If you feel that your question was answered then do flag the appropriate answer as the solution to your query.
Kind Regards,
Swarna.
All Answers
If the requirement is to simply stop a user from creating a New case with the Status as "Re-Open" then the following Validation Rule on the Case object will do the trick for you: I hope this helps; do let me know how it works out. If you feel that your question was answered then do flag the appropriate answer as the solution to your query.
Kind Regards,
Swarna.