Skip to main content
I have a date field named Project Start Date and a pick list field named Number of Rounds.

 

Number of Rounds should be a required field when Project Start Date is entered.

 

How do I write a Validation rule for this?

 

 
2 answers
  1. Sep 16, 2016, 3:28 PM

    Like this:

    AND(

      ISBLANK(TEXT(Number_Of_Rounds__c)),

      NOT(ISBLANK(Project_Start_Date__c))

    )

0/9000