You need to sign in to do that
Don't have an account?
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 )
))
AND(
$RecordType.Name = "REDSHOES",
Probability > 30,
OR(
ISBLANK(TEXT( Texture__c )),
ISBLANK(TEXT( Category__c )),
ISBLANK( Amount )
))
For your validation rule three condition should be true then only you validation rule will execute.
NOTE :- Probability Should be greater then 30.