Skip to main content
I'm new to working with validation rules.

 

I want to create a rule that a check box (Vendors Entered) is checked off when the stage changes to "Quote Submitted"

 

I also want to make another one that the (Job Number) must be entered when the stage changes to "Closed Won"

 

I've been reading the articles here and on the web and keep getting various syntax errors when I try to make the rule.

 

Thanks for any help.

 

 
10 respuestas
  1. 5 mar 2020, 13:54
    1st rule:

     

    AND( Vendors_entered__c =false, ispickval(stagename,"Quote Submitted"))

     

    2nd rule:

     

    AND(isblank(Job_number__c), ispickval(stagename,"Closed Won"))

     

    please mark as best answer if this helps you.
0/9000