function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
nickfs92840nickfs92840 

Validation Rule Not Functioning Correctly HELP :)

Hello, I created this Validation Rule, however, it does not execute properly when I save a record.

 

The idea is when "In Negotiations" is "No" and the field "Description of Negotiation" is left blank and user tries to save the record, the user should be prompted to fill in the "Description of Negotiation" field, however, this is not executing correctly.

 

Any ideas?

 

Thanks!

 

 

AND(
ISPICKVAL(In_Negotiations__c, "No"),
ISNULL(Description_of_Negotiation__c))

 

Best Answer chosen by Admin (Salesforce Developers) 
phiberoptikphiberoptik
AND(
ISPICKVAL(In_Negotiations__c, "No"),
ISBLANK(Description_of_Negotiation__c)
)

All Answers

phiberoptikphiberoptik
AND(
ISPICKVAL(In_Negotiations__c, "No"),
ISBLANK(Description_of_Negotiation__c)
)
This was selected as the best answer
nickfs92840nickfs92840

Thank you!!!!!

 

Clubpenza LocklikeClubpenza Locklike

Hello. Nice to meet you.

 

sbo  glodclub