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
Terry_0101Terry_0101 

What is wrong with my validation rule?

This validation rule syntax is fine and saves.  But the opportunity record does not error when the Texture__c field is blank.

AND( 
$RecordType.Name = "REDSHOES", 
Probability > 30, 
OR( 
ISBLANK(TEXT( Texture__c )), 
ISBLANK(TEXT( Category__c )), 
ISBLANK( Amount ) 
))
Hargobind_SinghHargobind_Singh
You have additional condions : RecordType.name and probability, unless they are true as well, blank texture__c won't give you an error message. 
Terry_0101Terry_0101
Yes I know.  That is not the issue.
Amit Chaudhary 8Amit Chaudhary 8
Hi Samantha,

For your validation rule three condition should be true then only you validation rule will execute.
NOTE :- Probability Should be greater then 30.